UNPKG

401 BTypeScriptView Raw
1/**
2 * Interface is deprecated in favor if the DictionaryOf type.
3 * In a future version this interface will be the equivalent
4 * of DictionaryOf<string>, which is the correct transitional
5 * type to use.
6 * @deprecated since version 3.1.12
7 */
8export interface Dictionary<T> {
9 [key: string]: T;
10}
11export interface DictionaryOf<T> {
12 [key: string]: T;
13}
14//# sourceMappingURL=Dictionary.d.ts.map
\No newline at end of file