export type Json = JsonAtom | JsonArray | JsonObject export type JsonAtom = string | number | boolean | null export type JsonArray = Array export type JsonObject = { [x: string]: Json }