interface TooltipCommand {
    aceCommandGroup?: string;
    action?: string;
    bindKey?: string | { mac?: string; win?: string };
    cssClass?: string;
    description?: string;
    enabled?: boolean | TooltipCommandFunction<boolean>;
    exec?: (editor?: any, args?: any) => void;
    getValue?: TooltipCommandFunction<any>;
    iconCssClass?: string;
    isAvailable?: (editor: Editor) => boolean;
    level?: number;
    multiSelectAction?: Function | "forEach" | "forEachLine";
    name?: string;
    passEvent?: boolean;
    readOnly?: boolean;
    scrollIntoView?:
        | true
        | "cursor"
        | "center"
        | "selectionPart"
        | "animate"
        | "selection"
        | "none";
    type: "text"
    | "button"
    | "checkbox";
}

Hierarchy (View Summary)

Properties

aceCommandGroup?: string
action?: string
bindKey?: string | { mac?: string; win?: string }
cssClass?: string
description?: string
enabled?: boolean | TooltipCommandFunction<boolean>
exec?: (editor?: any, args?: any) => void
getValue?: TooltipCommandFunction<any>
iconCssClass?: string
isAvailable?: (editor: Editor) => boolean
level?: number
multiSelectAction?: Function | "forEach" | "forEachLine"
name?: string
passEvent?: boolean
readOnly?: boolean
scrollIntoView?:
    | true
    | "cursor"
    | "center"
    | "selectionPart"
    | "animate"
    | "selection"
    | "none"
type: "text" | "button" | "checkbox"