Type Alias JsonValue

JsonValue: JsonPrimitive | readonly JsonValue[] | {
    [key: string]: JsonValue;
}