Files
DefinitelyTyped/gulp-mocha/gulp-mocha.d.ts
Phips Peter b04b6b41e1 The mocha options are optional
This was frustrating before if you wanted to use gulp mocha without
customization.
2015-03-08 10:39:42 -07:00

12 lines
415 B
TypeScript

// Type definitions for gulp-mocha
// Project: https://github.com/sindresorhus/gulp-mocha
// Definitions by: Asana <https://asana.com>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../mocha/mocha.d.ts"/>
/// <reference path="../node/node.d.ts"/>
declare module "gulp-mocha" {
function mocha(setupOptions?: MochaSetupOptions): NodeJS.ReadWriteStream;
export = mocha;
}