@tempots/ui

AsyncResultViewOptions type

Represents the options for rendering an asynchronous result view.

Signature:

export type AsyncResultViewOptions<T, E> = {
    success: (value: Signal<T>) => TNode;
    failure?: (error: Signal<E>) => TNode;
    notAsked?: () => TNode;
    loading?: (previousValue: Signal<T | undefined>) => TNode;
};