This commit is contained in:
Manuel Rueda
2016-01-10 19:46:46 -03:00
parent 7329ae6688
commit 52b68b9e9c
+1 -1
View File
@@ -26,6 +26,6 @@ declare module Promise {
then<R>(onFulfilled?: (value: T) => IThenable<R>|R, onRejected?: (error: any) => IThenable<R>|R): IThenable<R>;
catch<R>(onRejected?: (error: any) => IThenable<R>|R): IThenable<R>;
done<R>(onFulfilled?: (value: T) => IThenable<R>|R, onRejected?: (error: any) => IThenable<R>|R): IThenable<R>;
nodeify<R>(callbacl: Function): IThenable<R>;
nodeify<R>(callback: Function): IThenable<R>;
}
}