ohctechv3/.svn/pristine/b3/b36b2b89d1359e2da34958b06a928fea7c8b4e61.svn-base
2024-10-28 15:03:36 +05:30

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;