Type alias JSONValue

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

Type declaration