@tempots/dom > TaskOptions
Represents the options for a task.
Signature:
export type TaskOptions<T> = { pending?: () => TNode; then: (value: T) => TNode; error?: (error: unknown) => TNode; };
References: TNode