export type JsonValue = string | number | boolean | { [x: string]: JsonValue; } | Array | undefined | null;