export type JSONValue = string | number | boolean | null | {
    [key: string]: JSONValue;
} | JSONValue[];
