@flex-development/tutils
Version:
TypeScript utilities
15 lines (14 loc) • 417 B
text/typescript
/**
* @file Type Definitions - JSONValue
* @module tutils/types/JSONValue
*/
import type JSONArray from './json-array.cjs';
import type JSONObject from './json-object.cjs';
import type JSONPrimitive from './json-primitive.cjs';
/**
* [JSON data types][1].
*
* [1]: https://restfulapi.net/json-data-types
*/
declare type JSONValue = JSONArray | JSONObject | JSONPrimitive;
export { type JSONValue as default };