Bump flow-bin from 0.108.0 to 0.109.0 (#6104)

* Bump flow-bin from 0.108.0 to 0.109.0

Bumps [flow-bin](https://github.com/flowtype/flow-bin) from 0.108.0 to 0.109.0.
- [Release notes](https://github.com/flowtype/flow-bin/releases)
- [Commits](https://github.com/flowtype/flow-bin/compare/v0.108.0...v0.109.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Fix flow type to allow undefined (#6113)
This commit is contained in:
dependabot-preview[bot]
2019-10-08 18:39:32 +00:00
committed by peril-parse-community[bot]
parent ee6993a281
commit 068bcc5c4f
4 changed files with 6 additions and 6 deletions

View File

@@ -556,7 +556,7 @@ export default class SchemaController {
_dbAdapter: StorageAdapter;
schemaData: { [string]: Schema };
_cache: any;
reloadDataPromise: Promise<any>;
reloadDataPromise: ?Promise<any>;
protectedFields: any;
constructor(databaseAdapter: StorageAdapter, schemaCache: any) {