projecte_ionic/node_modules/webdriver-js-extender/built/lib/deferred_executor.d.ts
2022-02-09 18:30:03 +01:00

11 lines
433 B
TypeScript
Executable file

import { promise as wdpromise } from 'selenium-webdriver';
export declare class DeferredExecutor {
execute: (command: any) => wdpromise.Promise<any>;
defineCommand: (name: string, method: string, path: string) => void;
/**
* @param {!Promise<Executor>} delegate The promised delegate, which
* may be provided by any promise-like thenable object.
*/
constructor(delegate: wdpromise.Promise<any>);
}