Type Alias: KeysOfType<T, V>
KeysOfType<
T,V> ={ [K in keyof T]: T[K] extends V ? K : never }[keyofT]
Defined in: object/types.ts:105
Keys of T that have values of type V.
Type Parameters
T
T
V
V
KeysOfType<
T,V> ={ [K in keyof T]: T[K] extends V ? K : never }[keyofT]
Defined in: object/types.ts:105
Keys of T that have values of type V.
T
V