declarations
Version:
[](https://www.npmjs.com/package/declarations)
14 lines (11 loc) • 443 B
TypeScript
// Type definitions for gulp-mocha
// Project: https://github.com/sindresorhus/gulp-mocha
// Definitions by: Asana <https://asana.com>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../mocha/mocha.d.ts"/>
/// <reference path="../node/node.d.ts"/>
declare module "gulp-mocha" {
function mocha(setupOptions?: MochaSetupOptions): NodeJS.ReadWriteStream;
namespace mocha {}
export = mocha;
}