/** * Matches any type that is `null`, `undefined`, or `void`. */ type Nil = null | undefined | void; export type { Nil };