Theia API Documentation v1.65.0
    Preparing search index...
    interface MenuNodeFactory {
        createCommandMenu(item: MenuAction): CommandMenu;
        createGroup(
            id: string,
            orderString?: string,
            when?: string,
        ): CompoundMenuNode & MutableCompoundMenuNode;
        createSubmenu(
            id: string,
            label: string,
            contextKeyOverlays: undefined | Record<string, string>,
            orderString?: string,
            icon?: string,
            when?: string,
        ): CompoundMenuNode & RenderedMenuNode & MutableCompoundMenuNode;
        createSubmenuLink(
            delegate: Submenu,
            sortString?: string,
            when?: string,
        ): MenuNode;
    }

    Implemented by

    Index

    Methods