@types/gulp-protractor
Version:
TypeScript definitions for gulp-protractor
27 lines (21 loc) • 784 B
TypeScript
// Type definitions for gulp-protractor v4.1.1
// Project: https://github.com/mllrsohn/gulp-protractor
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
import gulp = require('gulp');
interface IOptions {
configFile?: string | undefined;
args?: Array<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;