Type Alias: valueTypes ​
ts
type valueTypes =
| null
| string
| number
| boolean
| object
| dictionaryType
| valueTypes[];
Internal
valueTypes
is a type that represents the possible values that can be stored in a key-value pair.
It can be null, string, number, boolean, object, dictionaryType, or an array of valueTypes. Example: const value: valueTypes = "Hello World"; const valueArray: valueTypes = [1, 2, 3];