Interface TooltipCommand

interface TooltipCommand {
    bindKey?: string | {
        mac?: string;
        win?: string;
    };
    cssClass: string;
    enabled: boolean | TooltipCommandFunction<boolean>;
    exec: ((editor, args?) => void);
    getValue?: TooltipCommandFunction<any>;
    iconCssClass: string;
    name?: string;
    readOnly?: boolean;
    type: "button" | "text" | "checkbox";
}

Hierarchy (view full)

Properties

bindKey?: string | {
    mac?: string;
    win?: string;
}

Type declaration

  • Optional mac?: string
  • Optional win?: string
cssClass: string
enabled: boolean | TooltipCommandFunction<boolean>
exec: ((editor, args?) => void)

Type declaration

    • (editor, args?): void
    • Parameters

      Returns void

getValue?: TooltipCommandFunction<any>
iconCssClass: string
name?: string
readOnly?: boolean
type: "button" | "text" | "checkbox"

Generated using TypeDoc