UNPKG

@flex-development/tutils

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