Type alias JSONValue

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

Strict JSON values. These are the only types that JSON can represent. All input values are encoded into JSON. Take note that undefined values are not allowed. JSON.stringify automatically converts undefined to `null.

Type declaration

Generated using TypeDoc