export interface IStringDictionary { [propName: string]: TValue; } export interface INumberDictionary extends Object { [propName: number]: TValue; }