gecko_driver_github.d.ts 498 B

1234567891011121314
  1. import { BinaryUrl } from './binary';
  2. import { GithubApiConfigSource } from './config_source';
  3. export declare class GeckoDriverGithub extends GithubApiConfigSource {
  4. constructor();
  5. getUrl(version: string): Promise<BinaryUrl>;
  6. getVersionList(): Promise<string[]>;
  7. getVersionsLookup(): Promise<Array<{
  8. version: string;
  9. index: string;
  10. }>>;
  11. private getLatestGeckoDriverVersion();
  12. private getSpecificGeckoDrierVersion(inputVersion);
  13. private oshelper();
  14. }