@tempots/ui
makeResource() function
Creates an asynchronous resource that can be loaded, reloaded, and disposed of.
R - The type of the request. V - The type of the value when the resource is successfully loaded. E - The type of the error when the resource fails to load.
Signature:
makeResource: <R, V, E>({ request, load, convertError, }: MakeResourceOptions<R, V, E>) => AsyncResource<V, E>
Parameters
Parameter |
Type |
Description |
---|---|---|
{ request, load, convertError, } |
MakeResourceOptions<R, V, E> |
Returns: AsyncResource<V, E>
{AsyncResource<V, E>} The created asynchronous resource.