Installation
npm install --save @types/gulp-protractor
Summary
This package contains type definitions for gulp-protractor (https://github.com/mllrsohn/gulp-protractor).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-protractor.
index.d.ts
// 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;
Additional Details
- Last updated: Sat, 11 Sep 2021 23:31:23 GMT
- Dependencies: @types/gulp, @types/node
- Global values: none
Credits
These definitions were written by Tanguy Krotoff.