UNPKG

1.28 kBMarkdownView Raw
1# Installation
2> `npm install --save @types/gulp-protractor`
3
4# Summary
5This package contains type definitions for gulp-protractor (https://github.com/mllrsohn/gulp-protractor).
6
7# Details
8Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-protractor.
9## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-protractor/index.d.ts)
10````ts
11/// <reference types="node" />
12
13import gulp = require("gulp");
14
15interface IOptions {
16 configFile?: string | undefined;
17 args?: string[] | undefined;
18 debug?: boolean | undefined;
19}
20
21interface IGulpProtractor {
22 getProtractorDir(): string;
23 getProtractorCli(): string;
24 protractor(options?: IOptions): NodeJS.ReadWriteStream;
25 webdriver_update_specific: gulp.TaskCallback;
26 webdriver_standalone: gulp.TaskCallback;
27 webdriver_update: gulp.TaskCallback;
28}
29
30declare var protractor: IGulpProtractor;
31export = protractor;
32
33````
34
35### Additional Details
36 * Last updated: Mon, 20 Nov 2023 23:36:24 GMT
37 * Dependencies: [@types/gulp](https://npmjs.com/package/@types/gulp), [@types/node](https://npmjs.com/package/@types/node)
38
39# Credits
40These definitions were written by [Tanguy Krotoff](https://github.com/tkrotoff).
41
\No newline at end of file