export type SubMenuItem = { type?: 'normal'; text: string; keys: string; func: () => void; }; export type MenuItem = { type?: 'normal'; text: string; keys: string; func: () => void; children?: SubMenuItem[]; } | { type: 'divider'; };