@tempots/dom

TaskOptions type

Represents the options for a task.

Signature:

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

References: TNode