@tempots/dom
GetValueType type
Gets the value type of a given Value type. If the type is a Signal
, it returns the inferred value type. Otherwise, it returns the type itself.
Signature:
export type GetValueType<T> = T extends Value<infer V> ? V : T;
References: Value