@tempots/ui
ResourceDisplayOptions interface
Options for displaying the different states of an asynchronous resource.
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 ResourceDisplayOptions<V, E>
Properties
Property |
Modifiers |
Type |
Description |
---|---|---|---|
(error: Signal<E>, reload: () => void) => TNode |
(Optional) Function to render when the resource has failed to load. | ||
(previous: Signal<V | undefined>, reload: () => void) => TNode |
(Optional) Function to render when the resource is loading. | ||
(reload: () => void) => TNode |
(Optional) Function to render when the resource has not been requested yet. | ||
(value: Signal<V>, reload: () => void) => TNode |
Function to render when the resource has successfully loaded. |