src/context-menu/context-menu.types.ts
Properties |
event |
event:
|
info |
info:
|
Type : string
|
label |
label:
|
Type : string
|
type |
type:
|
Type : null | "checkbox" | "radio"
|
value |
value:
|
Type : string
|
export interface ItemClickEvent {
type: null | "checkbox" | "radio";
label: string;
info: string;
value: string;
event: MouseEvent & KeyboardEvent;
}