oak-frontend-base/lib/platforms/web/router/withRouter.d.ts

7 lines
237 B
TypeScript

type OakComponentProperties = {
path?: string;
properties?: Record<string, any>;
};
declare const withRouter: (Component: React.ComponentType<any>, { path, properties }: OakComponentProperties) => any;
export default withRouter;