(
opts: {
routeTree: TRouteTree
} & ToMaskOptions<RouterCore<TRouteTree, 'never', boolean>, TFrom, TTo>,
)
| 647 | } |
| 648 | |
| 649 | export function createRouteMask< |
| 650 | TRouteTree extends AnyRoute, |
| 651 | TFrom extends string, |
| 652 | TTo extends string, |
| 653 | >( |
| 654 | opts: { |
| 655 | routeTree: TRouteTree |
| 656 | } & ToMaskOptions<RouterCore<TRouteTree, 'never', boolean>, TFrom, TTo>, |
| 657 | ): RouteMask<TRouteTree> { |
| 658 | return opts as any |
| 659 | } |
| 660 | |
| 661 | export interface DefaultRouteTypes<TProps> { |
| 662 | component: |
no outgoing calls
no test coverage detected