@tempots/ui

ResourceLoadOptions interface

Options for loading a resource, including the request, abort signal, and previous result.

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 ResourceLoadOptions<R, V, E> 

Properties

Property

Modifiers

Type

Description

abortSignal

readonly

AbortSignal

The signal to abort the loading process if needed.

previous

readonly

AsyncResult<V, E>

The previous result of the resource loading, if any.

request

readonly

R

The request to load the resource.