frontend/.pnpm-store/v3/files/b3/5d614ee70fbb561b7dfb09221c45f78660dfcd06c2e2ea5997630fa547486c7b4e7d02dbeb1f7e9781936858f74d96576f403ae1a2012ba18b9ecbec5fbbdb

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;