ionian/src/types/json.ts

5 lines
226 B
TypeScript
Raw Normal View History

2021-01-17 03:24:55 +09:00
export type JSONPrimitive = null|boolean|number|string;
export interface JSONMap extends Record<string, JSONType>{}
export interface JSONArray extends Array<JSONType>{};
export type JSONType = JSONMap|JSONPrimitive|JSONArray;