Interface IUIOptions

interface IUIOptions {
    featureCategory: "ranking" | "model" | "ui";
    featureLevel: "basic" | "advanced";
    mode:
        | "menu"
        | "menu+shortcut"
        | "shortcut"
        | (
            col: Column,
            mode: "header" | "sidePanel",
        ) => "menu" | "menu+shortcut" | "shortcut";
    order: number;
}

Properties

featureCategory: "ranking" | "model" | "ui"
featureLevel: "basic" | "advanced"
mode:
    | "menu"
    | "menu+shortcut"
    | "shortcut"
    | (
        col: Column,
        mode: "header" | "sidePanel",
    ) => "menu" | "menu+shortcut" | "shortcut"

whether to show this action as a shortcut action

'menu'
order: number

order hint for sorting actions

50