Type alias JSONValue

JSONValue: string | number | boolean | null | undefined | {
    toString(): string;
} | {
    [key: string]: JSONValue;
} | JSONValue[]

Type declaration

Type declaration