JSONData

Represents the allowed types for values in JSON files.

In JSON, values must be one of the following data types:

TypeScript declaration:

type JSONData = string | number | Data | JSONData[] | boolean | null;

Last updated