Dictionary

[ Interface ]

export interface Dictionary<T> {
    [index: string]: T | undefined;
}

An object, whose properties must be of type T and can only be addressed with strings.

Dictionary 1:

Available from 1.8