Type alias JSONDataTypes

JSONDataTypes: string | number | boolean | JSONDataTypes[] | {
    [key: string]: JSONDataTypes;
} | null

Type declaration