VariableValue
type VariableValue =
| undefined
| boolean
| number
| string
| VariableValue[]
| {
[key: string]: VariableValue;
};
Valid types for variables
type VariableValue =
| undefined
| boolean
| number
| string
| VariableValue[]
| {
[key: string]: VariableValue;
};
Valid types for variables