Interface Action

interface Action {
    isEnabled(effectiveMenuPath, ...args): boolean;
    isToggled(effectiveMenuPath, ...args): boolean;
    run(effectiveMenuPath, ...args): Promise<void>;
}

Methods