/** * Any types considered falsy in JS, */ export type Falsy = undefined | null | 0 | '' | false | void | never;