@tempots/dom

GetValueTypes type

Gets the value types of a given array of Value types.

Signature:

export type GetValueTypes<T extends Value<unknown>[]> = {
    [K in keyof T]: GetValueType<T[K]>;
};

References: Value, GetValueType