Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(index.ts): Fix exports to unbreak TypeScript 3.7 build
Browse files Browse the repository at this point in the history
  • Loading branch information
heathkit committed Oct 15, 2019
1 parent 5d29112 commit 7999a08
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import {ElementHelper, ProtractorBrowser} from './browser';
import {ElementArrayFinder, ElementFinder} from './element';
import {ProtractorExpectedConditions} from './expectedConditions';
import {Locator, ProtractorBy} from './locators';
import {PluginConfig, ProtractorPlugin} from './plugins';
import {Ptor} from './ptor';

// Re-export selenium-webdriver types.
Expand All @@ -13,12 +12,10 @@ export {Config} from './config';
export {ElementArrayFinder, ElementFinder} from './element';
export {ProtractorExpectedConditions} from './expectedConditions';
export {Locator, ProtractorBy} from './locators';
export {PluginConfig, ProtractorPlugin} from './plugins';
export {Ptor} from './ptor';
export {Runner} from './runner';

export type PluginConfig = PluginConfig;
export type ProtractorPlugin = ProtractorPlugin;

export let utils = {
firefox: require('selenium-webdriver/firefox'),
http: require('selenium-webdriver/http'),
Expand Down

0 comments on commit 7999a08

Please sign in to comment.