@flex-development/tutils
Version:
TypeScript utilities
13 lines (12 loc) • 370 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
*/
declare type JSONPrimitive = boolean | number | string | null;
export { type JSONPrimitive as default };