export interface NumberDictionary { [key: number]: string; } export interface NumberDictionaryG { [key: number]: T; } export interface StringDictionary { [key: string]: string; } export interface ObjectDictionary { [key: string]: ObjectDictionary | StringDictionary | NumberDictionary | any; } //# sourceMappingURL=models.d.ts.map