From 08e92bd7d4b3d055bc676451fe6b79104facea84 Mon Sep 17 00:00:00 2001 From: Anton Spirin Date: Sat, 22 Dec 2018 23:38:52 +0200 Subject: [PATCH] changed frontloadConnect argument type to any --- types/react-frontload/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-frontload/index.d.ts b/types/react-frontload/index.d.ts index 0a6fca2e93..7092566b4e 100644 --- a/types/react-frontload/index.d.ts +++ b/types/react-frontload/index.d.ts @@ -19,7 +19,7 @@ export interface FrontloadConnectOptions { export const Frontload: ComponentClass; export function frontloadConnect( - frontload: (props: {}) => Promise, + frontload: (props: any) => Promise, options?: FrontloadConnectOptions, ):

(Component: ComponentType

) => ComponentType

;