mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
12 lines
415 B
TypeScript
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;
|
|
} |