mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-07-27 04:32:32 +02:00
chore(deps): update flow-bin
This commit is contained in:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user