File size: 229 Bytes
1e92f2d | 1 2 3 4 5 6 | import type { RouteMatch } from './route-match'
import type { AppRouteRouteDefinition } from '../route-definitions/app-route-route-definition'
export interface AppRouteRouteMatch
extends RouteMatch<AppRouteRouteDefinition> {}
|