@flex-development/tutils
Version:
TypeScript utilities
16 lines (12 loc) • 351 B
text/typescript
/**
* @file Type Definitions - Primitive
* @module tutils/types/Primitive
*/
import type JSONPrimitive from './json-primitive'
/**
* Type representing any [primitive][1] value.
*
* [1]: https://developer.mozilla.org/docs/Glossary/Primitive
*/
type Primitive = JSONPrimitive | bigint | symbol | undefined
export { type Primitive as default }