mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
519 B
TypeScript
17 lines
519 B
TypeScript
// Type definitions for mocha 2.2.5
|
|
// Project: http://mochajs.org/
|
|
// Definitions by: Vadim Macagon <https://github.com/enlight>, vvakame <https://github.com/vvakame>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="mocha.d.ts" />
|
|
/// <reference path="../node/node.d.ts" />
|
|
|
|
declare namespace Mocha {
|
|
interface IRunnable extends NodeJS.EventEmitter {
|
|
}
|
|
interface ISuite extends NodeJS.EventEmitter {
|
|
}
|
|
interface IRunner extends NodeJS.EventEmitter {
|
|
}
|
|
}
|