@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

convertError

readonly

(error: unknown) => E

A function to convert an unknown error into a specific error type.

load

readonly

(options: ResourceLoadOptions<R, V, E>) => Promise<V>

A function to load the resource, returning a promise of the value.

request

readonly

Signal<R>

A signal representing the request to load the resource.