Files

7 lines
138 B
TypeScript

import { RouteProps, match } from 'react-router-dom';
export interface IonRouteData {
match: match | null;
childProps: RouteProps;
}