mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-13 22:40:50 +08:00
17 lines
472 B
TypeScript
17 lines
472 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 types="node" />
|
|
|
|
declare namespace Mocha {
|
|
interface IRunnable extends NodeJS.EventEmitter {
|
|
}
|
|
interface ISuite extends NodeJS.EventEmitter {
|
|
}
|
|
interface IRunner extends NodeJS.EventEmitter {
|
|
}
|
|
}
|