Slight update to q.d.ts to reflect current limitations in TypeScript.

This commit is contained in:
Andrew Gaspar
2013-06-20 22:06:09 -07:00
parent 91a4452e37
commit d4b888e50f
Vendored
+2 -2
View File
@@ -3,8 +3,8 @@
// Definitions by: Barrie Nemetchek, Andrew Gaspar
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare function Q<T>(value: T): Q.Promise<T>;
//declare function Q<T>(value: Q.Promise<T>): Q.Promise<T>
declare function Q<T>(value): Q.Promise<T>;
declare module Q {
interface Deferred<T> {
promise: Promise<T>;