UNPKG

@types/gulp-protractor

Version:
22 lines (17 loc) 544 B
/// <reference types="node" /> import gulp = require("gulp"); interface IOptions { configFile?: string | undefined; args?: string[] | undefined; debug?: boolean | undefined; } interface IGulpProtractor { getProtractorDir(): string; getProtractorCli(): string; protractor(options?: IOptions): NodeJS.ReadWriteStream; webdriver_update_specific: gulp.TaskCallback; webdriver_standalone: gulp.TaskCallback; webdriver_update: gulp.TaskCallback; } declare var protractor: IGulpProtractor; export = protractor;