UNPKG

type-fest

Version:

A collection of essential TypeScript types

16 lines (13 loc) 224 B
/** Matches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive). @category Type */ export type Primitive = | null | undefined | string | number | boolean | symbol | bigint; export {};