UNPKG

@types/gulp-protractor

Version:
41 lines (31 loc) 1.28 kB
# 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](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-protractor/index.d.ts) ````ts /// <reference types="node" /> import gulp = require("gulp"); interface IOptions { configFile?: string | undefined; args?: 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: Mon, 20 Nov 2023 23:36:24 GMT * Dependencies: [@types/gulp](https://npmjs.com/package/@types/gulp), [@types/node](https://npmjs.com/package/@types/node) # Credits These definitions were written by [Tanguy Krotoff](https://github.com/tkrotoff).