@tempots/dom > OneOfTupleOptions
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<T extends string, V> = {
[KK in T]: (value: Signal<V>) => TNode;
};
References: Signal, TNode