2018-04-26 15:33:47 +02:00

4 lines
51 B
TypeScript

export interface ObjMap<T> {
[s: string]: T;
}