| 80 | // Create and export the route tree |
| 81 | |
| 82 | export interface FileRoutesByFullPath { |
| 83 | "/": typeof IndexRoute; |
| 84 | "/auth/signin": typeof AuthSigninRoute; |
| 85 | "/auth/signup": typeof AuthSignupRoute; |
| 86 | "/auth/two-factor": typeof AuthTwoFactorRoute; |
| 87 | } |
| 88 | |
| 89 | export interface FileRoutesByTo { |
| 90 | "/": typeof IndexRoute; |
nothing calls this directly
no outgoing calls
no test coverage detected