chore(deps): update flow-bin

This commit is contained in:
alxshelepenok
2019-07-19 23:38:20 +03:00
parent 49c10e7a57
commit 98ffd67d23
4 changed files with 14 additions and 9 deletions

View File

@@ -1,9 +1,13 @@
// @flow
import type { Node as ReactNode } from 'react';
export type RenderCallback = (data: any) => ReactNode;
export type RenderCallback = {
render: (data: any) => ReactNode;
}
export type Entry = (string[]) => string;
export type Entry = {
getIn: (string[]) => string;
}
export type WidgetFor = (string) => string;