A type representing arbitrary JSON values (objects, arrays, strings, numbers, booleans, or null).
The actual type used is "anything defined", equivalent to "unknown" but excluding "undefined";
this behaves better than "unknown" in the generated documentation as the compiler does
not consider other types redundant with it, and it is easier to use than more strict typing
for JSON values as values do not generally need to be cast to this type.
A type representing arbitrary JSON values (objects, arrays, strings, numbers, booleans, or null). The actual type used is "anything defined", equivalent to "unknown" but excluding "undefined"; this behaves better than "unknown" in the generated documentation as the compiler does not consider other types redundant with it, and it is easier to use than more strict typing for JSON values as values do not generally need to be cast to this type.