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