2023-06-01 14:18:53 +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;
|