Merge pull request #8199 from kant2002/patch-1

Create typed version of reject
This commit is contained in:
Masahiro Wakame
2016-03-04 22:54:47 +09:00

View File

@@ -51,6 +51,7 @@ declare module Promise {
* Make a promise that rejects to obj. For consistency and debugging (eg stack traces), obj should be an instanceof Error
*/
function reject(error: any): Promise<any>;
function reject<T>(error: T): Promise<T>;
/**
* Make a promise that fulfills when every item in the array fulfills, and rejects if (and when) any item rejects.