The recipes.blue monorepo recipes.blue
recipes appview atproto
at main 191 lines 5.9 kB view raw
1/* eslint-disable */ 2 3// @ts-nocheck 4 5// noinspection JSUnusedGlobalSymbols 6 7// This file was automatically generated by TanStack Router. 8// You should NOT make any changes in this file as it will be overwritten. 9// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified. 10 11import { createFileRoute } from '@tanstack/react-router' 12 13import { Route as rootRouteImport } from './routes/__root' 14import { Route as RouteImport } from './routes/_' 15import { Route as authLoginRouteImport } from './routes/_.(auth)/login' 16import { Route as appRecipesNewRouteImport } from './routes/_.(app)/recipes/new' 17 18const appIndexLazyRouteImport = createFileRoute('/_/(app)/')() 19const appRecipesAuthorIndexLazyRouteImport = createFileRoute( 20 '/_/(app)/recipes/$author/', 21)() 22const appRecipesAuthorRkeyIndexLazyRouteImport = createFileRoute( 23 '/_/(app)/recipes/$author/$rkey/', 24)() 25 26const Route = RouteImport.update({ 27 id: '/_', 28 getParentRoute: () => rootRouteImport, 29} as any) 30const appIndexLazyRoute = appIndexLazyRouteImport 31 .update({ 32 id: '/(app)/', 33 path: '/', 34 getParentRoute: () => Route, 35 } as any) 36 .lazy(() => import('./routes/_.(app)/index.lazy').then((d) => d.Route)) 37const authLoginRoute = authLoginRouteImport.update({ 38 id: '/(auth)/login', 39 path: '/login', 40 getParentRoute: () => Route, 41} as any) 42const appRecipesNewRoute = appRecipesNewRouteImport.update({ 43 id: '/(app)/recipes/new', 44 path: '/recipes/new', 45 getParentRoute: () => Route, 46} as any) 47const appRecipesAuthorIndexLazyRoute = appRecipesAuthorIndexLazyRouteImport 48 .update({ 49 id: '/(app)/recipes/$author/', 50 path: '/recipes/$author/', 51 getParentRoute: () => Route, 52 } as any) 53 .lazy(() => 54 import('./routes/_.(app)/recipes/$author/index.lazy').then((d) => d.Route), 55 ) 56const appRecipesAuthorRkeyIndexLazyRoute = 57 appRecipesAuthorRkeyIndexLazyRouteImport 58 .update({ 59 id: '/(app)/recipes/$author/$rkey/', 60 path: '/recipes/$author/$rkey/', 61 getParentRoute: () => Route, 62 } as any) 63 .lazy(() => 64 import('./routes/_.(app)/recipes/$author/$rkey/index.lazy').then( 65 (d) => d.Route, 66 ), 67 ) 68 69export interface FileRoutesByFullPath { 70 '/login': typeof authLoginRoute 71 '/': typeof appIndexLazyRoute 72 '/recipes/new': typeof appRecipesNewRoute 73 '/recipes/$author': typeof appRecipesAuthorIndexLazyRoute 74 '/recipes/$author/$rkey': typeof appRecipesAuthorRkeyIndexLazyRoute 75} 76export interface FileRoutesByTo { 77 '/login': typeof authLoginRoute 78 '/': typeof appIndexLazyRoute 79 '/recipes/new': typeof appRecipesNewRoute 80 '/recipes/$author': typeof appRecipesAuthorIndexLazyRoute 81 '/recipes/$author/$rkey': typeof appRecipesAuthorRkeyIndexLazyRoute 82} 83export interface FileRoutesById { 84 __root__: typeof rootRouteImport 85 '/_': typeof RouteWithChildren 86 '/_/(auth)/login': typeof authLoginRoute 87 '/_/(app)/': typeof appIndexLazyRoute 88 '/_/(app)/recipes/new': typeof appRecipesNewRoute 89 '/_/(app)/recipes/$author/': typeof appRecipesAuthorIndexLazyRoute 90 '/_/(app)/recipes/$author/$rkey/': typeof appRecipesAuthorRkeyIndexLazyRoute 91} 92export interface FileRouteTypes { 93 fileRoutesByFullPath: FileRoutesByFullPath 94 fullPaths: 95 | '/login' 96 | '/' 97 | '/recipes/new' 98 | '/recipes/$author' 99 | '/recipes/$author/$rkey' 100 fileRoutesByTo: FileRoutesByTo 101 to: 102 | '/login' 103 | '/' 104 | '/recipes/new' 105 | '/recipes/$author' 106 | '/recipes/$author/$rkey' 107 id: 108 | '__root__' 109 | '/_' 110 | '/_/(auth)/login' 111 | '/_/(app)/' 112 | '/_/(app)/recipes/new' 113 | '/_/(app)/recipes/$author/' 114 | '/_/(app)/recipes/$author/$rkey/' 115 fileRoutesById: FileRoutesById 116} 117export interface RootRouteChildren { 118 Route: typeof RouteWithChildren 119} 120 121declare module '@tanstack/react-router' { 122 interface FileRoutesByPath { 123 '/_': { 124 id: '/_' 125 path: '' 126 fullPath: '' 127 preLoaderRoute: typeof RouteImport 128 parentRoute: typeof rootRouteImport 129 } 130 '/_/(app)/': { 131 id: '/_/(app)/' 132 path: '/' 133 fullPath: '/' 134 preLoaderRoute: typeof appIndexLazyRouteImport 135 parentRoute: typeof Route 136 } 137 '/_/(auth)/login': { 138 id: '/_/(auth)/login' 139 path: '/login' 140 fullPath: '/login' 141 preLoaderRoute: typeof authLoginRouteImport 142 parentRoute: typeof Route 143 } 144 '/_/(app)/recipes/new': { 145 id: '/_/(app)/recipes/new' 146 path: '/recipes/new' 147 fullPath: '/recipes/new' 148 preLoaderRoute: typeof appRecipesNewRouteImport 149 parentRoute: typeof Route 150 } 151 '/_/(app)/recipes/$author/': { 152 id: '/_/(app)/recipes/$author/' 153 path: '/recipes/$author' 154 fullPath: '/recipes/$author' 155 preLoaderRoute: typeof appRecipesAuthorIndexLazyRouteImport 156 parentRoute: typeof Route 157 } 158 '/_/(app)/recipes/$author/$rkey/': { 159 id: '/_/(app)/recipes/$author/$rkey/' 160 path: '/recipes/$author/$rkey' 161 fullPath: '/recipes/$author/$rkey' 162 preLoaderRoute: typeof appRecipesAuthorRkeyIndexLazyRouteImport 163 parentRoute: typeof Route 164 } 165 } 166} 167 168interface RouteChildren { 169 authLoginRoute: typeof authLoginRoute 170 appIndexLazyRoute: typeof appIndexLazyRoute 171 appRecipesNewRoute: typeof appRecipesNewRoute 172 appRecipesAuthorIndexLazyRoute: typeof appRecipesAuthorIndexLazyRoute 173 appRecipesAuthorRkeyIndexLazyRoute: typeof appRecipesAuthorRkeyIndexLazyRoute 174} 175 176const RouteChildren: RouteChildren = { 177 authLoginRoute: authLoginRoute, 178 appIndexLazyRoute: appIndexLazyRoute, 179 appRecipesNewRoute: appRecipesNewRoute, 180 appRecipesAuthorIndexLazyRoute: appRecipesAuthorIndexLazyRoute, 181 appRecipesAuthorRkeyIndexLazyRoute: appRecipesAuthorRkeyIndexLazyRoute, 182} 183 184const RouteWithChildren = Route._addFileChildren(RouteChildren) 185 186const rootRouteChildren: RootRouteChildren = { 187 Route: RouteWithChildren, 188} 189export const routeTree = rootRouteImport 190 ._addFileChildren(rootRouteChildren) 191 ._addFileTypes<FileRouteTypes>()