Interface Variables

interface Variables {
    [s: string]: {
        type: VariableTypes;
        value: string;
    };
}

Indexable

[s: string]: {
    type: VariableTypes;
    value: string;
}