@flex-development/tutils
Version:
TypeScript utilities
15 lines (12 loc) • 362 B
text/typescript
/**
* @file Type Definitions - JSONPrimitive
* @module tutils/types/JSONPrimitive
*/
/**
* Type representing any [primitive][1] [JSON value][2].
*
* [1]: https://developer.mozilla.org/docs/Glossary/Primitive
* [2]: https://restfulapi.net/json-data-types
*/
type JSONPrimitive = boolean | number | string | null
export { type JSONPrimitive as default }