UNPKG

@flex-development/tutils

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