UNPKG

1.54 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// Type definitions for gulp-protractor v4.1.1
12// Project: https://github.com/mllrsohn/gulp-protractor
13// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
14// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
15
16/// <reference types="node" />
17
18import gulp = require('gulp');
19
20interface IOptions {
21 configFile?: string | undefined;
22 args?: Array<string> | undefined;
23 debug?: boolean | undefined;
24}
25
26interface IGulpProtractor {
27 getProtractorDir(): string;
28 getProtractorCli(): string;
29 protractor(options?: IOptions): NodeJS.ReadWriteStream;
30 webdriver_update_specific: gulp.TaskCallback;
31 webdriver_standalone: gulp.TaskCallback;
32 webdriver_update: gulp.TaskCallback;
33}
34
35declare var protractor: IGulpProtractor;
36export = protractor;
37
38````
39
40### Additional Details
41 * Last updated: Sat, 11 Sep 2021 23:31:23 GMT
42 * Dependencies: [@types/gulp](https://npmjs.com/package/@types/gulp), [@types/node](https://npmjs.com/package/@types/node)
43 * Global values: none
44
45# Credits
46These definitions were written by [Tanguy Krotoff](https://github.com/tkrotoff).
47
\No newline at end of file