From f9246bcbb34d2c8c588f6114c55d264860ed535b Mon Sep 17 00:00:00 2001 From: Caleb Meredith Date: Tue, 26 Sep 2017 11:20:07 -0700 Subject: [PATCH] Update typings for Promise.all() for D5827319 Reviewed By: samwgoldman Differential Revision: D5830645 fbshipit-source-id: db2bb0715aab58d3601712ee0b080abaa9f8f131 --- flow-typed/Promise.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }