UNPKG

@flex-development/tutils

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