mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
import { RouteProps, match } from 'react-router-dom';
|
|
|
|
export interface IonRouteData {
|
|
match: match | null;
|
|
childProps: RouteProps;
|
|
}
|