UNPKG

85 BTypeScriptView Raw
1export interface Dictionary<T = any> {
2 [key: string]: T;
3 [key: number]: T;
4}