@tempots/dom

OneOfTupleOptions type

Represents a mapping of keys to functions that accept a value of type Signal<V> and return a TNode.

Signature:

export type OneOfTupleOptions&lt;T extends string, V&gt; = {
    [KK in T]: (value: Signal&lt;V&gt;) =&gt; TNode;
};

References: Signal, TNode