这似乎是一个简单的问题。我基本上是想在我创建的接口内创建键值对对象。
但是我不知道如何实现这一点。我总是得到错误 通用类型“地图”需要2个类型参数
我的界面对象看起来像这样。我试图使“类型”对象成为键,值对。
export interface CalendarEvent<MetaType = any> {
id?: string | number;
start: Date;
end?: Date;
title: string;
color?: EventColor;
actions?: EventAction[];
allDay?: boolean;
cssClass?: string;
resizable?: {
beforeStart?: boolean;
afterEnd?: boolean;
};
draggable?: boolean;
meta?: MetaType;
amount: number;
type: Map<key: string, value: string>
}
答案 0 :(得分:2)
只需提供通用类型-删除参数名称,即:
Map<string, string>