an appview-less Bluesky client using Constellation and PDS Queries reddwarf.app
frontend spa bluesky reddwarf microcosm
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 { Route as rootRouteImport } from './routes/__root' 12import { Route as SettingsRouteImport } from './routes/settings' 13import { Route as SearchRouteImport } from './routes/search' 14import { Route as NotificationsRouteImport } from './routes/notifications' 15import { Route as FeedsRouteImport } from './routes/feeds' 16import { Route as PathlessLayoutRouteImport } from './routes/_pathlessLayout' 17import { Route as IndexRouteImport } from './routes/index' 18import { Route as CallbackIndexRouteImport } from './routes/callback/index' 19import { Route as PathlessLayoutNestedLayoutRouteImport } from './routes/_pathlessLayout/_nested-layout' 20import { Route as ProfileDidIndexRouteImport } from './routes/profile.$did/index' 21import { Route as PathlessLayoutNestedLayoutRouteBRouteImport } from './routes/_pathlessLayout/_nested-layout/route-b' 22import { Route as PathlessLayoutNestedLayoutRouteARouteImport } from './routes/_pathlessLayout/_nested-layout/route-a' 23import { Route as ProfileDidPostRkeyRouteImport } from './routes/profile.$did/post.$rkey' 24import { Route as ProfileDidPostRkeyRepostedByRouteImport } from './routes/profile.$did/post.$rkey.reposted-by' 25import { Route as ProfileDidPostRkeyQuotesRouteImport } from './routes/profile.$did/post.$rkey.quotes' 26import { Route as ProfileDidPostRkeyLikedByRouteImport } from './routes/profile.$did/post.$rkey.liked-by' 27import { Route as ProfileDidPostRkeyImageIRouteImport } from './routes/profile.$did/post.$rkey.image.$i' 28 29const SettingsRoute = SettingsRouteImport.update({ 30 id: '/settings', 31 path: '/settings', 32 getParentRoute: () => rootRouteImport, 33} as any) 34const SearchRoute = SearchRouteImport.update({ 35 id: '/search', 36 path: '/search', 37 getParentRoute: () => rootRouteImport, 38} as any) 39const NotificationsRoute = NotificationsRouteImport.update({ 40 id: '/notifications', 41 path: '/notifications', 42 getParentRoute: () => rootRouteImport, 43} as any) 44const FeedsRoute = FeedsRouteImport.update({ 45 id: '/feeds', 46 path: '/feeds', 47 getParentRoute: () => rootRouteImport, 48} as any) 49const PathlessLayoutRoute = PathlessLayoutRouteImport.update({ 50 id: '/_pathlessLayout', 51 getParentRoute: () => rootRouteImport, 52} as any) 53const IndexRoute = IndexRouteImport.update({ 54 id: '/', 55 path: '/', 56 getParentRoute: () => rootRouteImport, 57} as any) 58const CallbackIndexRoute = CallbackIndexRouteImport.update({ 59 id: '/callback/', 60 path: '/callback/', 61 getParentRoute: () => rootRouteImport, 62} as any) 63const PathlessLayoutNestedLayoutRoute = 64 PathlessLayoutNestedLayoutRouteImport.update({ 65 id: '/_nested-layout', 66 getParentRoute: () => PathlessLayoutRoute, 67 } as any) 68const ProfileDidIndexRoute = ProfileDidIndexRouteImport.update({ 69 id: '/profile/$did/', 70 path: '/profile/$did/', 71 getParentRoute: () => rootRouteImport, 72} as any) 73const PathlessLayoutNestedLayoutRouteBRoute = 74 PathlessLayoutNestedLayoutRouteBRouteImport.update({ 75 id: '/route-b', 76 path: '/route-b', 77 getParentRoute: () => PathlessLayoutNestedLayoutRoute, 78 } as any) 79const PathlessLayoutNestedLayoutRouteARoute = 80 PathlessLayoutNestedLayoutRouteARouteImport.update({ 81 id: '/route-a', 82 path: '/route-a', 83 getParentRoute: () => PathlessLayoutNestedLayoutRoute, 84 } as any) 85const ProfileDidPostRkeyRoute = ProfileDidPostRkeyRouteImport.update({ 86 id: '/profile/$did/post/$rkey', 87 path: '/profile/$did/post/$rkey', 88 getParentRoute: () => rootRouteImport, 89} as any) 90const ProfileDidPostRkeyRepostedByRoute = 91 ProfileDidPostRkeyRepostedByRouteImport.update({ 92 id: '/reposted-by', 93 path: '/reposted-by', 94 getParentRoute: () => ProfileDidPostRkeyRoute, 95 } as any) 96const ProfileDidPostRkeyQuotesRoute = 97 ProfileDidPostRkeyQuotesRouteImport.update({ 98 id: '/quotes', 99 path: '/quotes', 100 getParentRoute: () => ProfileDidPostRkeyRoute, 101 } as any) 102const ProfileDidPostRkeyLikedByRoute = 103 ProfileDidPostRkeyLikedByRouteImport.update({ 104 id: '/liked-by', 105 path: '/liked-by', 106 getParentRoute: () => ProfileDidPostRkeyRoute, 107 } as any) 108const ProfileDidPostRkeyImageIRoute = 109 ProfileDidPostRkeyImageIRouteImport.update({ 110 id: '/image/$i', 111 path: '/image/$i', 112 getParentRoute: () => ProfileDidPostRkeyRoute, 113 } as any) 114 115export interface FileRoutesByFullPath { 116 '/': typeof IndexRoute 117 '/feeds': typeof FeedsRoute 118 '/notifications': typeof NotificationsRoute 119 '/search': typeof SearchRoute 120 '/settings': typeof SettingsRoute 121 '/callback': typeof CallbackIndexRoute 122 '/route-a': typeof PathlessLayoutNestedLayoutRouteARoute 123 '/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute 124 '/profile/$did': typeof ProfileDidIndexRoute 125 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRouteWithChildren 126 '/profile/$did/post/$rkey/liked-by': typeof ProfileDidPostRkeyLikedByRoute 127 '/profile/$did/post/$rkey/quotes': typeof ProfileDidPostRkeyQuotesRoute 128 '/profile/$did/post/$rkey/reposted-by': typeof ProfileDidPostRkeyRepostedByRoute 129 '/profile/$did/post/$rkey/image/$i': typeof ProfileDidPostRkeyImageIRoute 130} 131export interface FileRoutesByTo { 132 '/': typeof IndexRoute 133 '/feeds': typeof FeedsRoute 134 '/notifications': typeof NotificationsRoute 135 '/search': typeof SearchRoute 136 '/settings': typeof SettingsRoute 137 '/callback': typeof CallbackIndexRoute 138 '/route-a': typeof PathlessLayoutNestedLayoutRouteARoute 139 '/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute 140 '/profile/$did': typeof ProfileDidIndexRoute 141 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRouteWithChildren 142 '/profile/$did/post/$rkey/liked-by': typeof ProfileDidPostRkeyLikedByRoute 143 '/profile/$did/post/$rkey/quotes': typeof ProfileDidPostRkeyQuotesRoute 144 '/profile/$did/post/$rkey/reposted-by': typeof ProfileDidPostRkeyRepostedByRoute 145 '/profile/$did/post/$rkey/image/$i': typeof ProfileDidPostRkeyImageIRoute 146} 147export interface FileRoutesById { 148 __root__: typeof rootRouteImport 149 '/': typeof IndexRoute 150 '/_pathlessLayout': typeof PathlessLayoutRouteWithChildren 151 '/feeds': typeof FeedsRoute 152 '/notifications': typeof NotificationsRoute 153 '/search': typeof SearchRoute 154 '/settings': typeof SettingsRoute 155 '/_pathlessLayout/_nested-layout': typeof PathlessLayoutNestedLayoutRouteWithChildren 156 '/callback/': typeof CallbackIndexRoute 157 '/_pathlessLayout/_nested-layout/route-a': typeof PathlessLayoutNestedLayoutRouteARoute 158 '/_pathlessLayout/_nested-layout/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute 159 '/profile/$did/': typeof ProfileDidIndexRoute 160 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRouteWithChildren 161 '/profile/$did/post/$rkey/liked-by': typeof ProfileDidPostRkeyLikedByRoute 162 '/profile/$did/post/$rkey/quotes': typeof ProfileDidPostRkeyQuotesRoute 163 '/profile/$did/post/$rkey/reposted-by': typeof ProfileDidPostRkeyRepostedByRoute 164 '/profile/$did/post/$rkey/image/$i': typeof ProfileDidPostRkeyImageIRoute 165} 166export interface FileRouteTypes { 167 fileRoutesByFullPath: FileRoutesByFullPath 168 fullPaths: 169 | '/' 170 | '/feeds' 171 | '/notifications' 172 | '/search' 173 | '/settings' 174 | '/callback' 175 | '/route-a' 176 | '/route-b' 177 | '/profile/$did' 178 | '/profile/$did/post/$rkey' 179 | '/profile/$did/post/$rkey/liked-by' 180 | '/profile/$did/post/$rkey/quotes' 181 | '/profile/$did/post/$rkey/reposted-by' 182 | '/profile/$did/post/$rkey/image/$i' 183 fileRoutesByTo: FileRoutesByTo 184 to: 185 | '/' 186 | '/feeds' 187 | '/notifications' 188 | '/search' 189 | '/settings' 190 | '/callback' 191 | '/route-a' 192 | '/route-b' 193 | '/profile/$did' 194 | '/profile/$did/post/$rkey' 195 | '/profile/$did/post/$rkey/liked-by' 196 | '/profile/$did/post/$rkey/quotes' 197 | '/profile/$did/post/$rkey/reposted-by' 198 | '/profile/$did/post/$rkey/image/$i' 199 id: 200 | '__root__' 201 | '/' 202 | '/_pathlessLayout' 203 | '/feeds' 204 | '/notifications' 205 | '/search' 206 | '/settings' 207 | '/_pathlessLayout/_nested-layout' 208 | '/callback/' 209 | '/_pathlessLayout/_nested-layout/route-a' 210 | '/_pathlessLayout/_nested-layout/route-b' 211 | '/profile/$did/' 212 | '/profile/$did/post/$rkey' 213 | '/profile/$did/post/$rkey/liked-by' 214 | '/profile/$did/post/$rkey/quotes' 215 | '/profile/$did/post/$rkey/reposted-by' 216 | '/profile/$did/post/$rkey/image/$i' 217 fileRoutesById: FileRoutesById 218} 219export interface RootRouteChildren { 220 IndexRoute: typeof IndexRoute 221 PathlessLayoutRoute: typeof PathlessLayoutRouteWithChildren 222 FeedsRoute: typeof FeedsRoute 223 NotificationsRoute: typeof NotificationsRoute 224 SearchRoute: typeof SearchRoute 225 SettingsRoute: typeof SettingsRoute 226 CallbackIndexRoute: typeof CallbackIndexRoute 227 ProfileDidIndexRoute: typeof ProfileDidIndexRoute 228 ProfileDidPostRkeyRoute: typeof ProfileDidPostRkeyRouteWithChildren 229} 230 231declare module '@tanstack/react-router' { 232 interface FileRoutesByPath { 233 '/settings': { 234 id: '/settings' 235 path: '/settings' 236 fullPath: '/settings' 237 preLoaderRoute: typeof SettingsRouteImport 238 parentRoute: typeof rootRouteImport 239 } 240 '/search': { 241 id: '/search' 242 path: '/search' 243 fullPath: '/search' 244 preLoaderRoute: typeof SearchRouteImport 245 parentRoute: typeof rootRouteImport 246 } 247 '/notifications': { 248 id: '/notifications' 249 path: '/notifications' 250 fullPath: '/notifications' 251 preLoaderRoute: typeof NotificationsRouteImport 252 parentRoute: typeof rootRouteImport 253 } 254 '/feeds': { 255 id: '/feeds' 256 path: '/feeds' 257 fullPath: '/feeds' 258 preLoaderRoute: typeof FeedsRouteImport 259 parentRoute: typeof rootRouteImport 260 } 261 '/_pathlessLayout': { 262 id: '/_pathlessLayout' 263 path: '' 264 fullPath: '' 265 preLoaderRoute: typeof PathlessLayoutRouteImport 266 parentRoute: typeof rootRouteImport 267 } 268 '/': { 269 id: '/' 270 path: '/' 271 fullPath: '/' 272 preLoaderRoute: typeof IndexRouteImport 273 parentRoute: typeof rootRouteImport 274 } 275 '/callback/': { 276 id: '/callback/' 277 path: '/callback' 278 fullPath: '/callback' 279 preLoaderRoute: typeof CallbackIndexRouteImport 280 parentRoute: typeof rootRouteImport 281 } 282 '/_pathlessLayout/_nested-layout': { 283 id: '/_pathlessLayout/_nested-layout' 284 path: '' 285 fullPath: '' 286 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteImport 287 parentRoute: typeof PathlessLayoutRoute 288 } 289 '/profile/$did/': { 290 id: '/profile/$did/' 291 path: '/profile/$did' 292 fullPath: '/profile/$did' 293 preLoaderRoute: typeof ProfileDidIndexRouteImport 294 parentRoute: typeof rootRouteImport 295 } 296 '/_pathlessLayout/_nested-layout/route-b': { 297 id: '/_pathlessLayout/_nested-layout/route-b' 298 path: '/route-b' 299 fullPath: '/route-b' 300 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteBRouteImport 301 parentRoute: typeof PathlessLayoutNestedLayoutRoute 302 } 303 '/_pathlessLayout/_nested-layout/route-a': { 304 id: '/_pathlessLayout/_nested-layout/route-a' 305 path: '/route-a' 306 fullPath: '/route-a' 307 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteARouteImport 308 parentRoute: typeof PathlessLayoutNestedLayoutRoute 309 } 310 '/profile/$did/post/$rkey': { 311 id: '/profile/$did/post/$rkey' 312 path: '/profile/$did/post/$rkey' 313 fullPath: '/profile/$did/post/$rkey' 314 preLoaderRoute: typeof ProfileDidPostRkeyRouteImport 315 parentRoute: typeof rootRouteImport 316 } 317 '/profile/$did/post/$rkey/reposted-by': { 318 id: '/profile/$did/post/$rkey/reposted-by' 319 path: '/reposted-by' 320 fullPath: '/profile/$did/post/$rkey/reposted-by' 321 preLoaderRoute: typeof ProfileDidPostRkeyRepostedByRouteImport 322 parentRoute: typeof ProfileDidPostRkeyRoute 323 } 324 '/profile/$did/post/$rkey/quotes': { 325 id: '/profile/$did/post/$rkey/quotes' 326 path: '/quotes' 327 fullPath: '/profile/$did/post/$rkey/quotes' 328 preLoaderRoute: typeof ProfileDidPostRkeyQuotesRouteImport 329 parentRoute: typeof ProfileDidPostRkeyRoute 330 } 331 '/profile/$did/post/$rkey/liked-by': { 332 id: '/profile/$did/post/$rkey/liked-by' 333 path: '/liked-by' 334 fullPath: '/profile/$did/post/$rkey/liked-by' 335 preLoaderRoute: typeof ProfileDidPostRkeyLikedByRouteImport 336 parentRoute: typeof ProfileDidPostRkeyRoute 337 } 338 '/profile/$did/post/$rkey/image/$i': { 339 id: '/profile/$did/post/$rkey/image/$i' 340 path: '/image/$i' 341 fullPath: '/profile/$did/post/$rkey/image/$i' 342 preLoaderRoute: typeof ProfileDidPostRkeyImageIRouteImport 343 parentRoute: typeof ProfileDidPostRkeyRoute 344 } 345 } 346} 347 348interface PathlessLayoutNestedLayoutRouteChildren { 349 PathlessLayoutNestedLayoutRouteARoute: typeof PathlessLayoutNestedLayoutRouteARoute 350 PathlessLayoutNestedLayoutRouteBRoute: typeof PathlessLayoutNestedLayoutRouteBRoute 351} 352 353const PathlessLayoutNestedLayoutRouteChildren: PathlessLayoutNestedLayoutRouteChildren = 354 { 355 PathlessLayoutNestedLayoutRouteARoute: 356 PathlessLayoutNestedLayoutRouteARoute, 357 PathlessLayoutNestedLayoutRouteBRoute: 358 PathlessLayoutNestedLayoutRouteBRoute, 359 } 360 361const PathlessLayoutNestedLayoutRouteWithChildren = 362 PathlessLayoutNestedLayoutRoute._addFileChildren( 363 PathlessLayoutNestedLayoutRouteChildren, 364 ) 365 366interface PathlessLayoutRouteChildren { 367 PathlessLayoutNestedLayoutRoute: typeof PathlessLayoutNestedLayoutRouteWithChildren 368} 369 370const PathlessLayoutRouteChildren: PathlessLayoutRouteChildren = { 371 PathlessLayoutNestedLayoutRoute: PathlessLayoutNestedLayoutRouteWithChildren, 372} 373 374const PathlessLayoutRouteWithChildren = PathlessLayoutRoute._addFileChildren( 375 PathlessLayoutRouteChildren, 376) 377 378interface ProfileDidPostRkeyRouteChildren { 379 ProfileDidPostRkeyLikedByRoute: typeof ProfileDidPostRkeyLikedByRoute 380 ProfileDidPostRkeyQuotesRoute: typeof ProfileDidPostRkeyQuotesRoute 381 ProfileDidPostRkeyRepostedByRoute: typeof ProfileDidPostRkeyRepostedByRoute 382 ProfileDidPostRkeyImageIRoute: typeof ProfileDidPostRkeyImageIRoute 383} 384 385const ProfileDidPostRkeyRouteChildren: ProfileDidPostRkeyRouteChildren = { 386 ProfileDidPostRkeyLikedByRoute: ProfileDidPostRkeyLikedByRoute, 387 ProfileDidPostRkeyQuotesRoute: ProfileDidPostRkeyQuotesRoute, 388 ProfileDidPostRkeyRepostedByRoute: ProfileDidPostRkeyRepostedByRoute, 389 ProfileDidPostRkeyImageIRoute: ProfileDidPostRkeyImageIRoute, 390} 391 392const ProfileDidPostRkeyRouteWithChildren = 393 ProfileDidPostRkeyRoute._addFileChildren(ProfileDidPostRkeyRouteChildren) 394 395const rootRouteChildren: RootRouteChildren = { 396 IndexRoute: IndexRoute, 397 PathlessLayoutRoute: PathlessLayoutRouteWithChildren, 398 FeedsRoute: FeedsRoute, 399 NotificationsRoute: NotificationsRoute, 400 SearchRoute: SearchRoute, 401 SettingsRoute: SettingsRoute, 402 CallbackIndexRoute: CallbackIndexRoute, 403 ProfileDidIndexRoute: ProfileDidIndexRoute, 404 ProfileDidPostRkeyRoute: ProfileDidPostRkeyRouteWithChildren, 405} 406export const routeTree = rootRouteImport 407 ._addFileChildren(rootRouteChildren) 408 ._addFileTypes<FileRouteTypes>()