mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 21:31:12 +08:00
13 lines
392 B
TypeScript
13 lines
392 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 types="mocha"/>
|
|
/// <reference types="node"/>
|
|
|
|
|
|
declare function mocha(setupOptions?: MochaSetupOptions): NodeJS.ReadWriteStream;
|
|
declare namespace mocha { }
|
|
export = mocha;
|