Type Alias JsonValue

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

The type of the result of parsing JSON.