deferred_executor.d.ts 433 B

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