Skip to content

API Documentation / @pinia/colada / _DataState_Base

Interface: _DataState_Base<TResult, TError>

Internal base type for data state.

Extended by

Type Parameters

TResult

TResult

TError

TError

Properties

data

ts
data: TResult;

The last successfully resolved data.


error

ts
error: TError;

The last rejected error.


status

ts
status: DataStateStatus;

The status of the data.

See

DataStateStatus

Released under the MIT License.