UNPKG

@flex-development/tutils

Version:
13 lines (12 loc) 363 B
/** * @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 };