UNPKG

@eolme/vma-router

Version:
7 lines (6 loc) 305 B
import { ComponentType } from 'react'; import { RouterProps } from './withRouter'; export interface ThrottlingRouterProps extends RouterProps { onTransitionEnd: () => void; } export declare function withTransitionRouter<T>(Component: ComponentType<ThrottlingRouterProps & T>): ComponentType<T>;