/**
 * @author xiangshouding
 * @file types/lang.ts
 */

export interface Map<T> {
    [key: string]: T;
}