diff --git a/flow-typed/Promise.js b/flow-typed/Promise.js index 01d01ce8..c6adb736 100644 --- a/flow-typed/Promise.js +++ b/flow-typed/Promise.js @@ -33,6 +33,6 @@ declare class Promise<+R> { static resolve(object?: Promise | T): Promise; static reject(error?: mixed): Promise; - static all>(promises: T): Promise<$TupleMap>; + static all>(promises: T): Promise<$TupleMap>; static race(promises: Array>): Promise; }