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

Commit

Permalink
fix: export Runner, not just its type. (#4227)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasSloan authored and vikerman committed Apr 14, 2017
1 parent c64270b commit 8249167
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {ProtractorExpectedConditions} from './expectedConditions';
import {ProtractorBy} from './locators';
import {PluginConfig, ProtractorPlugin} from './plugins';
import {Ptor} from './ptor';
import {Runner} from './runner';

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

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

Expand Down

0 comments on commit 8249167

Please sign in to comment.