Represents the allowed types for values in JSON files.
In JSON, values must be one of the following data types:
Stringarrow-up-right
Numberarrow-up-right
Dataarrow-up-right
Arrayarrow-up-right<JSONDataarrow-up-right>
Booleanarrow-up-right
nullarrow-up-right
type JSONData = string | number | Data | JSONData[] | boolean | null;
Last updated 3 years ago