2019-11-05 10:39:26 +01:00

4 lines
63 B
TypeScript

export interface Dictionary<T = any> {
[key: string]: T;
}