mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 14:20:12 +00:00
changed frontloadConnect argument type to any
This commit is contained in:
2
types/react-frontload/index.d.ts
vendored
2
types/react-frontload/index.d.ts
vendored
@@ -19,7 +19,7 @@ export interface FrontloadConnectOptions {
|
||||
export const Frontload: ComponentClass<FrontloadProps>;
|
||||
|
||||
export function frontloadConnect(
|
||||
frontload: (props: {}) => Promise<void>,
|
||||
frontload: (props: any) => Promise<void>,
|
||||
options?: FrontloadConnectOptions,
|
||||
): <P = {}>(Component: ComponentType<P>) => ComponentType<P>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user