freeblox/packages/editor/src/types/menu.interface.ts

11 lines
197 B
TypeScript

export interface MenuItem {
[x: string]: unknown;
id: string;
label?: string;
shortcut?: string;
onClick?: () => void;
component?: any;
children?: MenuItem[];
disabled?: boolean;
}