/** * Type representing falsy values in TypeScript: `false | "" | 0 | null | undefined` */ export type Falsy = false | "" | 0 | null | undefined;