@tempots/ui
MakeResourceOptions interface
Options for creating a resource, including the request signal, load function, and error converter.
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:
export interface MakeResourceOptions<R, V, E>
Properties
Property |
Modifiers |
Type |
Description |
---|---|---|---|
|
(error: unknown) => E |
A function to convert an unknown error into a specific error type. | |
|
(options: ResourceLoadOptions<R, V, E>) => Promise<V> |
A function to load the resource, returning a promise of the value. | |
|
Signal<R> |
A signal representing the request to load the resource. |