@tempots/dom

AsyncOptions type

Options for the Async component.

Signature:

export type AsyncOptions = {
    pending?: TNode;
    then: (value: T) => TNode;
    error?: (error: unknown) => TNode;
};

References: TNode