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

Commit 7999a08

Browse files
committed
fix(index.ts): Fix exports to unbreak TypeScript 3.7 build
1 parent 5d29112 commit 7999a08

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lib/index.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {ElementHelper, ProtractorBrowser} from './browser';
22
import {ElementArrayFinder, ElementFinder} from './element';
33
import {ProtractorExpectedConditions} from './expectedConditions';
44
import {Locator, ProtractorBy} from './locators';
5-
import {PluginConfig, ProtractorPlugin} from './plugins';
65
import {Ptor} from './ptor';
76

87
// Re-export selenium-webdriver types.
@@ -13,12 +12,10 @@ export {Config} from './config';
1312
export {ElementArrayFinder, ElementFinder} from './element';
1413
export {ProtractorExpectedConditions} from './expectedConditions';
1514
export {Locator, ProtractorBy} from './locators';
15+
export {PluginConfig, ProtractorPlugin} from './plugins';
1616
export {Ptor} from './ptor';
1717
export {Runner} from './runner';
1818

19-
export type PluginConfig = PluginConfig;
20-
export type ProtractorPlugin = ProtractorPlugin;
21-
2219
export let utils = {
2320
firefox: require('selenium-webdriver/firefox'),
2421
http: require('selenium-webdriver/http'),

0 commit comments

Comments
 (0)