Interface IPageElementListenerActions

interface IPageElementListenerActions {
    callCustomScript: {
        script: string;
    };
    setFocusCursor: {
        selector: string;
    };
    toggle: {
        enable: boolean;
        selector: string;
    };
}

Properties

callCustomScript: {
    script: string;
}

Type declaration

  • script: string
setFocusCursor: {
    selector: string;
}

Type declaration

  • selector: string
toggle: {
    enable: boolean;
    selector: string;
}

Type declaration

  • enable: boolean
  • selector: string