mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-04 06:19:24 +08:00
13 lines
378 B
TypeScript
13 lines
378 B
TypeScript
// Type definitions for karma-chai 0.1
|
|
// Project: http://xdissent.github.io/karma-chai
|
|
// Definitions by: JayAndCatchFire <https://github.com/JayAndCatchFire>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import chai = require('chai');
|
|
|
|
declare global {
|
|
var assert: Chai.AssertStatic;
|
|
var expect: Chai.ExpectStatic;
|
|
var should: Chai.Should;
|
|
}
|