/** * 键值对定义 * @interface IKeyValue * @exports */ export interface IKeyValue { [key: string]: T; [index: number]: T; }