Fixed immutable.js global naming (#9569)

* Fixed immutable global naming.

* Fixed export.
This commit is contained in:
Giedrius Grabauskas
2016-06-08 10:06:34 +03:00
committed by Horiuchi_H
parent 571cd2bb8c
commit 220d2c2b5f

View File

@@ -35,7 +35,7 @@
* [ES6]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/New_in_JavaScript/ECMAScript_6_support_in_Mozilla
*/
declare namespace __Immutable {
declare namespace Immutable {
/**
* Deeply converts plain JS objects and arrays to Immutable Maps and Lists.
@@ -2542,5 +2542,5 @@ declare namespace __Immutable {
}
declare module "immutable" {
export = __Immutable
export = Immutable;
}