UNPKG

@younho9/types

Version:

A set of utility types for TypeScript

9 lines (8 loc) 159 B
/** * Nullish value * * {@link https://developer.mozilla.org/en-US/docs/Glossary/Nullish} * * @category Basic */ export type Nullish = undefined | null;