Skip to main content

VariableValue

type VariableValue = 
| undefined
| boolean
| number
| string
| VariableValue[]
| {
[key: string]: VariableValue;
};

Valid types for variables