v4web-components
Version:
Stencil Component Starter
25 lines (24 loc) • 500 B
TypeScript
export declare class LabDsContextMenu {
items?: Array<{
label: string;
key: string;
icon?: string;
event?: () => void;
disabled?: boolean;
}>;
destructiveItem?: {
label: string;
key: string;
icon?: string;
event?: () => void;
disabled?: boolean;
};
iconMenu: string;
isItemsVisible: boolean;
disabled: boolean;
listPosition: 'right' | 'left';
handleSelect(): void;
el: HTMLElement;
checkForClickOutside(ev: any): void;
render(): any;
}