Interface MultiColumnMenuProvider

interface MultiColumnMenuProvider ((isSupportAndDevelopment) => Promise<{
    columns: {
        isExtensible?: boolean;
    };
    groups: {};
    items: ({
        group: string;
        id: string;
        label: string;
        localizeNotes: string;
        order: number;
        searchTerms?: string;
        tooltip?: string;
    } | {
        command: string;
        group: string;
        iconPathAfter?: string;
        iconPathBefore?: string;
        label: string;
        localizeNotes: string;
        order: number;
        searchTerms?: string;
        tooltip?: string;
    })[];
}>)
  • Parameters

    • isSupportAndDevelopment: boolean

    Returns Promise<{
        columns: {
            isExtensible?: boolean;
        };
        groups: {};
        items: ({
            group: string;
            id: string;
            label: string;
            localizeNotes: string;
            order: number;
            searchTerms?: string;
            tooltip?: string;
        } | {
            command: string;
            group: string;
            iconPathAfter?: string;
            iconPathBefore?: string;
            label: string;
            localizeNotes: string;
            order: number;
            searchTerms?: string;
            tooltip?: string;
        })[];
    }>