UNPKG

212 BTypeScriptView Raw
1/**
2Matches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive).
3
4@category Type
5*/
6export type Primitive =
7 | null
8 | undefined
9 | string
10 | number
11 | boolean
12 | symbol
13 | bigint;