Skip to content

Home > @theweave/api > AsyncStatus

AsyncStatus type

Signature:

typescript
export type AsyncStatus<T> = {
    status: 'pending';
} | {
    status: 'complete';
    value: T;
} | {
    status: 'error';
    error: any;
};