Skip to main content

Function: del()

Issue an HTTP DELETE. Named del because delete is a reserved keyword. Convenience wrapper around fetcher.

Call Signature

del<T>(url, options?, params?): Effect<T, FetcherValidationError | FetcherError, HttpClient>
Defined in: packages/http/src/fetcher.ts:705

Type Parameters

T

T = unknown

Parameters

url

string

options?

FetcherOptions<T>

params?

Returns

Effect<T, FetcherValidationError | FetcherError, HttpClient>

Call Signature

del<S>(url, options, params?): Effect<Type<S>, FetcherValidationError | FetcherError, HttpClient>
Defined in: packages/http/src/fetcher.ts:711

Type Parameters

S

S extends SyncSchema<Type<S>>

Parameters

url

string

options

FetcherOptions<Type<S>> & object

params?

Returns

Effect<Type<S>, FetcherValidationError | FetcherError, HttpClient>