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

Commit 8249167

Browse files
LucasSloanvikerman
authored andcommitted
fix: export Runner, not just its type. (#4227)
1 parent c64270b commit 8249167

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {ProtractorExpectedConditions} from './expectedConditions';
44
import {ProtractorBy} from './locators';
55
import {PluginConfig, ProtractorPlugin} from './plugins';
66
import {Ptor} from './ptor';
7-
import {Runner} from './runner';
87

98
// Re-export selenium-webdriver types.
109
export {ActionSequence, Browser, Builder, Button, Capabilities, Capability, error, EventEmitter, FileDetector, Key, logging, promise, Session, until, WebDriver, WebElement, WebElementPromise} from 'selenium-webdriver';
@@ -15,8 +14,8 @@ export {ElementArrayFinder, ElementFinder} from './element';
1514
export {ProtractorExpectedConditions} from './expectedConditions';
1615
export {ProtractorBy} from './locators';
1716
export {Ptor} from './ptor';
17+
export {Runner} from './runner';
1818

19-
export type Runner = Runner;
2019
export type PluginConfig = PluginConfig;
2120
export type ProtractorPlugin = ProtractorPlugin;
2221

0 commit comments

Comments
 (0)