mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
If dependency is unnecessary, replaces with stub declarations If dependency is necessary, declares a requirement on at least TS2.1 to match mocha's
14 lines
419 B
TypeScript
14 lines
419 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
|
|
// TypeScript Version: 2.1
|
|
|
|
/// <reference types="mocha"/>
|
|
/// <reference types="node"/>
|
|
|
|
|
|
declare function mocha(setupOptions?: MochaSetupOptions): NodeJS.ReadWriteStream;
|
|
declare namespace mocha { }
|
|
export = mocha;
|