2
0
mirror of synced 2025-02-17 08:46:43 +00:00

Fixes flow error

This commit is contained in:
Richard B. Kaufman-López 2017-06-01 19:15:46 -05:00
parent dfa8639743
commit eed9ccbfd4

View File

@ -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]);
}