Represents the allowed types for values in JSON files.
Last updated 2 years ago
Was this helpful?
In JSON, values must be one of the following data types:
<>
type JSONData = string | number | Data | JSONData[] | boolean | null;