iink-ts - v4.0.0
    Preparing search index...

    Type Alias TMenuContextConfig

    Configuration to enable/disable each context menu individually. Sub-menus accept boolean to show/hide entirely, or an object to configure individual items.

    type TMenuContextConfig = {
        convert?: boolean;
        decorator?: TContextDecoratorConfig;
        duplicate?: boolean;
        edit?: boolean;
        export?: TContextExportConfig;
        group?: boolean;
        math?: TContextMathConfig;
        remove?: boolean;
        reorder?: TContextReorderConfig;
        selectAll?: boolean;
    }
    Index
    convert?: boolean

    Enable/disable Convert menu

    Enable/disable Decorator menu. Pass an object to configure individual decorator types.

    duplicate?: boolean

    Enable/disable Duplicate menu

    edit?: boolean

    Enable/disable Edit menu

    Enable/disable Export menu. Pass an object to configure individual export formats.

    group?: boolean

    Enable/disable Group menu

    Enable/disable Math menu. Pass an object to configure individual math operations.

    remove?: boolean

    Enable/disable Remove menu

    Enable/disable Reorder menu. Pass an object to configure individual reorder actions.

    selectAll?: boolean

    Enable/disable Select All menu