// Type definitions for gulp-protractor v4.1.1 // Project: https://github.com/mllrsohn/gulp-protractor // Definitions by: Tanguy Krotoff // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// import gulp = require('gulp'); interface IOptions { configFile?: string | undefined; args?: Array | 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;