Files
DefinitelyTyped/types/karma-chai/index.d.ts
2018-06-11 17:01:34 -05:00

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;
}