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.
Available from 1.8 |
[ 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.
Available from 1.8 |