export type JsonValue = boolean | number | string | null | JsonArray | JsonMap export interface JsonMap { [key: string]: JsonValue } // eslint-disable-next-line @typescript-eslint/no-empty-object-type export interface JsonArray extends Array {} // export type JsonValue = any