Interface MenuCommandExecutor

interface MenuCommandExecutor {
    executeCommand(...args): Promise<unknown>;
    isEnabled(...args): boolean;
    isToggled(...args): boolean;
    isVisible(...args): boolean;
}

Hierarchy (view full)

Implemented by

Methods