14 lines
212 B
Plaintext
14 lines
212 B
Plaintext
/**
|
|
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;
|