Type Alias VariableValue

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