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