Merge pull request #1853 from pkaul/master

Turn "when.d.ts" into an external module
This commit is contained in:
Masahiro Wakame
2014-04-01 10:22:55 +09:00
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -2,7 +2,8 @@
/// <reference path="../rx.js/rx.async.d.ts"/>
/// <reference path="../es6-promises/es6-promises.d.ts"/>
/// <reference path="../q/Q.d.ts"/>
/// <reference path="../when/when.d.ts"/>
import When = require("../when/when");
var thenNum: PromisesAPlus.Thenable<number>;
var thenStr: PromisesAPlus.Thenable<string>;
+2
View File
@@ -78,3 +78,5 @@ declare module When {
reason?: any;
}
}
export = When;