next
Version:
The React Framework
7 lines (6 loc) • 367 B
TypeScript
import type { RouteMatch } from './route-match';
import type { AppPageInterceptingRouteDefinition, AppPageRouteDefinition } from '../route-definitions/app-page-route-definition';
export interface AppPageRouteMatch extends RouteMatch<AppPageRouteDefinition> {
}
export interface AppPageInterceptingRouteMatch extends RouteMatch<AppPageInterceptingRouteDefinition> {
}