UNPKG

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