UNPKG

ts-essentials

Version:
4 lines (3 loc) 124 B
export type PickProperties<Type, Value> = { [Key in keyof Type as Type[Key] extends Value ? Key : never]: Type[Key]; };