UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

28 lines (22 loc) 806 B
// Type definitions for gulp-protractor v1.0.0 // Project: https://github.com/mllrsohn/gulp-protractor // Definitions by: Tanguy Krotoff <https://github.com/tkrotoff> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// <reference path="../node/node.d.ts" /> /// <reference path="../gulp/gulp.d.ts" /> declare module 'gulp-protractor' { import gulp = require('gulp'); interface IOptions { configFile?: string; args?: Array<string>; debug?: boolean; } interface IGulpProtractor { getProtractorDir(): string; protractor(options?: IOptions): NodeJS.ReadWriteStream; webdriver_standalone: gulp.TaskCallback; webdriver_update: gulp.TaskCallback; } var protractor: IGulpProtractor; export = protractor; }