@flex-development/tutils
Version:
TypeScript utilities
13 lines (12 loc) • 320 B
text/typescript
/**
* @file Type Definitions - JSONArray
* @module tutils/types/JSONArray
*/
import type JSONValue from './json-value.mjs';
/**
* Type representing an array containing [JSON values][1].
*
* [1]: https://restfulapi.net/json-data-types
*/
declare type JSONArray = JSONValue[];
export { type JSONArray as default };