astro-ghostcms/.pnpm-store/v3/files/b3/5d614ee70fbb561b7dfb09221c4...

14 lines
212 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
/**
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;