UNPKG

124 BTypeScriptView Raw
1export type PickProperties<Type, Value> = {
2 [Key in keyof Type as Type[Key] extends Value ? Key : never]: Type[Key];
3};