Function: get()
Issue an HTTP GET. Convenience wrapper around fetcher.Examples
Call Signature
get<Defined in: packages/http/src/fetcher.ts:578T>(url,options?,params?):Effect<T,FetcherValidationError|FetcherError,HttpClient>
Type Parameters
T
T = unknown
Parameters
url
string
options?
FetcherOptions<T>
params?
Returns
Effect<T, FetcherValidationError | FetcherError, HttpClient>
Call Signature
get<Defined in: packages/http/src/fetcher.ts:584A>(url,options,params?):Effect<A,FetcherValidationError|FetcherError,HttpClient>
Type Parameters
A
A
Parameters
url
string
options
FetcherOptions<A> & object
params?
Returns
Effect<A, FetcherValidationError | FetcherError, HttpClient>