Function: put()
Issue an HTTP PUT (full-resource replace). Convenience wrapper around fetcher.Call Signature
put<Defined in: packages/http/src/fetcher.ts:643T>(url,body?,options?,params?):Effect<T,FetcherValidationError|FetcherError,HttpClient>
Type Parameters
T
T = unknown
Parameters
url
string
body?
any
options?
FetcherOptions<T>
params?
Returns
Effect<T, FetcherValidationError | FetcherError, HttpClient>
Call Signature
put<Defined in: packages/http/src/fetcher.ts:650S>(url,body,options,params?):Effect<Type<S>,FetcherValidationError|FetcherError,HttpClient>
Type Parameters
S
S extends SyncSchema<Type<S>>
Parameters
url
string
body
any
options
FetcherOptions<Type<S>> & object
params?
Returns
Effect<Type<S>, FetcherValidationError | FetcherError, HttpClient>