@tempots/ui

AsyncResource interface

Represents an asynchronous resource with its current status, value, error, and loading state. Provides methods to reload the resource and dispose of it.

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 AsyncResource<V, E> 

Properties

Property

Modifiers

Type

Description

dispose

readonly

() => void

Disposes of the resource, aborting any ongoing requests and cleaning up.

error

readonly

Signal<E | undefined>

The current error of the resource, or undefined if not failed.

loading

readonly

Signal<boolean>

Whether the resource is currently loading.

reload

readonly

() => void

Reloads the resource using the current request.

status

readonly

Signal<AsyncResult<V, E>>

The current status of the resource as an AsyncResult.

value

readonly

Signal<V | undefined>

The current value of the resource, or undefined if not loaded or failed.