diff --git a/chai/chai-assert.d.ts b/chai/chai-assert.d.ts index 0790cb17f..30ae2deb7 100644 --- a/chai/chai-assert.d.ts +++ b/chai/chai-assert.d.ts @@ -129,7 +129,3 @@ declare module chai { //browser global declare var assert:chai.Assert; - -declare module 'chai' { -export = chai; -} diff --git a/chai/chai.d.ts b/chai/chai.d.ts index 54d5770c9..058d55196 100644 --- a/chai/chai.d.ts +++ b/chai/chai.d.ts @@ -162,3 +162,7 @@ declare module chai { (constructor: Function, expected?: RegExp, message?: string): Expect; } } + +declare module "chai" { + export = chai; +}