From eed9ccbfd41c6bb3e2b63fab5172f19272d610df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20B=2E=20Kaufman-L=C3=B3pez?= Date: Thu, 1 Jun 2017 19:15:46 -0500 Subject: [PATCH] Fixes flow error --- lib/modules/config/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/config/index.js b/lib/modules/config/index.js index f2a8b36b..4c40b8b5 100644 --- a/lib/modules/config/index.js +++ b/lib/modules/config/index.js @@ -110,7 +110,7 @@ export default class RemoteConfig extends Base { return FirebaseRemoteConfig .getValues(keys || []) .then((nativeValues) => { - const values = {}; + const values:{[String]: Object} = {}; for (let i = 0, len = keys.length; i < len; i++) { values[keys[i]] = this._nativeValueToJS(nativeValues[i]); }