hosted.d.ts 482 B

1234567891011121314
  1. /// <reference types="q" />
  2. import * as q from 'q';
  3. import { Config } from '../config';
  4. import { DriverProvider } from './driverProvider';
  5. export declare class Hosted extends DriverProvider {
  6. constructor(config: Config);
  7. /**
  8. * Configure and launch (if applicable) the object's environment.
  9. * @public
  10. * @return {q.promise} A promise which will resolve when the environment is
  11. * ready to test.
  12. */
  13. protected setupDriverEnv(): q.Promise<any>;
  14. }