label: string,
tooltip: string,
icon: string,
mode: string;
}
interface TimeCmd extends TimeMode {
command: (Event);
}
и на
{ label: "12:20", tooltip: 'Отработано времени', icon: "gg-stopwatch", mode: 'workedTime', command: (_: Event) => this.setTimeMode('workedTime')},
Type '(_: Event) => void' is missing the following properties from type 'Event': bubbles, cancelBubble, cancelable, composed, and 18 more.
Чего ему не хватает? Ну, не использую я в данном случае event, и таки шо?
command: (p: Event) => void
Офигеть, заработало!
Обсуждают сегодня