frontend/.pnpm-store/v3/files/f3/4f16e10a4353ef043b554d8064b5577061be7dfe01aaa9bea9bed63ec7b455a55639d6b36fe753cfd80b2fb12b24ce3ce15163e29b9715ec398ad1697a4903

14 lines
213 B
Plaintext

/**
Matches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive).
@category Basic
*/
export type Primitive =
| null
| undefined
| string
| number
| boolean
| symbol
| bigint;