UNPKG

185 BPlain TextView Raw
1/**
2 * An open string to value map. Generally you should use a more specific type instead of this.
3 */
4export interface Dictionary<T = any> {
5 [key: string]: T;
6 [key: number]: T;
7}