UNPKG

167 BPlain TextView Raw
1export type Json = boolean | number | string | JsonObject | JsonArray | null;
2
3export interface JsonObject {
4 [key: string]: Json;
5}
6
7export type JsonArray = Json[];