Extracts falsy properties from an object type T.
T
type T = { a: string; b: number; c: boolean; d?: string | null; e: 0; f: null;};type az = FalsyProperties<T>;// Result: { e: 0; f: null;} Copy
type T = { a: string; b: number; c: boolean; d?: string | null; e: 0; f: null;};type az = FalsyProperties<T>;// Result: { e: 0; f: null;}
Extracts falsy properties from an object type
T
.