UNPKG

the-observable-plugin-system

Version:
13 lines (11 loc) 180 B
/** * A JSON entity */ export type JSON = string | number | boolean | null | JSONObject | JSON[]; /** * A JSON object */ interface JSONObject { [property: string]: JSON; } ;