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' 24 25const SettingsRoute = SettingsRouteImport.update({ 26 id: '/settings', 27 path: '/settings', 28 getParentRoute: () => rootRouteImport, 29} as any) 30const SearchRoute = SearchRouteImport.update({ 31 id: '/search', 32 path: '/search', 33 getParentRoute: () => rootRouteImport, 34} as any) 35const NotificationsRoute = NotificationsRouteImport.update({ 36 id: '/notifications', 37 path: '/notifications', 38 getParentRoute: () => rootRouteImport, 39} as any) 40const FeedsRoute = FeedsRouteImport.update({ 41 id: '/feeds', 42 path: '/feeds', 43 getParentRoute: () => rootRouteImport, 44} as any) 45const PathlessLayoutRoute = PathlessLayoutRouteImport.update({ 46 id: '/_pathlessLayout', 47 getParentRoute: () => rootRouteImport, 48} as any) 49const IndexRoute = IndexRouteImport.update({ 50 id: '/', 51 path: '/', 52 getParentRoute: () => rootRouteImport, 53} as any) 54const CallbackIndexRoute = CallbackIndexRouteImport.update({ 55 id: '/callback/', 56 path: '/callback/', 57 getParentRoute: () => rootRouteImport, 58} as any) 59const PathlessLayoutNestedLayoutRoute = 60 PathlessLayoutNestedLayoutRouteImport.update({ 61 id: '/_nested-layout', 62 getParentRoute: () => PathlessLayoutRoute, 63 } as any) 64const ProfileDidIndexRoute = ProfileDidIndexRouteImport.update({ 65 id: '/profile/$did/', 66 path: '/profile/$did/', 67 getParentRoute: () => rootRouteImport, 68} as any) 69const PathlessLayoutNestedLayoutRouteBRoute = 70 PathlessLayoutNestedLayoutRouteBRouteImport.update({ 71 id: '/route-b', 72 path: '/route-b', 73 getParentRoute: () => PathlessLayoutNestedLayoutRoute, 74 } as any) 75const PathlessLayoutNestedLayoutRouteARoute = 76 PathlessLayoutNestedLayoutRouteARouteImport.update({ 77 id: '/route-a', 78 path: '/route-a', 79 getParentRoute: () => PathlessLayoutNestedLayoutRoute, 80 } as any) 81const ProfileDidPostRkeyRoute = ProfileDidPostRkeyRouteImport.update({ 82 id: '/profile/$did/post/$rkey', 83 path: '/profile/$did/post/$rkey', 84 getParentRoute: () => rootRouteImport, 85} as any) 86 87export interface FileRoutesByFullPath { 88 '/': typeof IndexRoute 89 '/feeds': typeof FeedsRoute 90 '/notifications': typeof NotificationsRoute 91 '/search': typeof SearchRoute 92 '/settings': typeof SettingsRoute 93 '/callback': typeof CallbackIndexRoute 94 '/route-a': typeof PathlessLayoutNestedLayoutRouteARoute 95 '/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute 96 '/profile/$did': typeof ProfileDidIndexRoute 97 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRoute 98} 99export interface FileRoutesByTo { 100 '/': typeof IndexRoute 101 '/feeds': typeof FeedsRoute 102 '/notifications': typeof NotificationsRoute 103 '/search': typeof SearchRoute 104 '/settings': typeof SettingsRoute 105 '/callback': typeof CallbackIndexRoute 106 '/route-a': typeof PathlessLayoutNestedLayoutRouteARoute 107 '/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute 108 '/profile/$did': typeof ProfileDidIndexRoute 109 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRoute 110} 111export interface FileRoutesById { 112 __root__: typeof rootRouteImport 113 '/': typeof IndexRoute 114 '/_pathlessLayout': typeof PathlessLayoutRouteWithChildren 115 '/feeds': typeof FeedsRoute 116 '/notifications': typeof NotificationsRoute 117 '/search': typeof SearchRoute 118 '/settings': typeof SettingsRoute 119 '/_pathlessLayout/_nested-layout': typeof PathlessLayoutNestedLayoutRouteWithChildren 120 '/callback/': typeof CallbackIndexRoute 121 '/_pathlessLayout/_nested-layout/route-a': typeof PathlessLayoutNestedLayoutRouteARoute 122 '/_pathlessLayout/_nested-layout/route-b': typeof PathlessLayoutNestedLayoutRouteBRoute 123 '/profile/$did/': typeof ProfileDidIndexRoute 124 '/profile/$did/post/$rkey': typeof ProfileDidPostRkeyRoute 125} 126export interface FileRouteTypes { 127 fileRoutesByFullPath: FileRoutesByFullPath 128 fullPaths: 129 | '/' 130 | '/feeds' 131 | '/notifications' 132 | '/search' 133 | '/settings' 134 | '/callback' 135 | '/route-a' 136 | '/route-b' 137 | '/profile/$did' 138 | '/profile/$did/post/$rkey' 139 fileRoutesByTo: FileRoutesByTo 140 to: 141 | '/' 142 | '/feeds' 143 | '/notifications' 144 | '/search' 145 | '/settings' 146 | '/callback' 147 | '/route-a' 148 | '/route-b' 149 | '/profile/$did' 150 | '/profile/$did/post/$rkey' 151 id: 152 | '__root__' 153 | '/' 154 | '/_pathlessLayout' 155 | '/feeds' 156 | '/notifications' 157 | '/search' 158 | '/settings' 159 | '/_pathlessLayout/_nested-layout' 160 | '/callback/' 161 | '/_pathlessLayout/_nested-layout/route-a' 162 | '/_pathlessLayout/_nested-layout/route-b' 163 | '/profile/$did/' 164 | '/profile/$did/post/$rkey' 165 fileRoutesById: FileRoutesById 166} 167export interface RootRouteChildren { 168 IndexRoute: typeof IndexRoute 169 PathlessLayoutRoute: typeof PathlessLayoutRouteWithChildren 170 FeedsRoute: typeof FeedsRoute 171 NotificationsRoute: typeof NotificationsRoute 172 SearchRoute: typeof SearchRoute 173 SettingsRoute: typeof SettingsRoute 174 CallbackIndexRoute: typeof CallbackIndexRoute 175 ProfileDidIndexRoute: typeof ProfileDidIndexRoute 176 ProfileDidPostRkeyRoute: typeof ProfileDidPostRkeyRoute 177} 178 179declare module '@tanstack/react-router' { 180 interface FileRoutesByPath { 181 '/settings': { 182 id: '/settings' 183 path: '/settings' 184 fullPath: '/settings' 185 preLoaderRoute: typeof SettingsRouteImport 186 parentRoute: typeof rootRouteImport 187 } 188 '/search': { 189 id: '/search' 190 path: '/search' 191 fullPath: '/search' 192 preLoaderRoute: typeof SearchRouteImport 193 parentRoute: typeof rootRouteImport 194 } 195 '/notifications': { 196 id: '/notifications' 197 path: '/notifications' 198 fullPath: '/notifications' 199 preLoaderRoute: typeof NotificationsRouteImport 200 parentRoute: typeof rootRouteImport 201 } 202 '/feeds': { 203 id: '/feeds' 204 path: '/feeds' 205 fullPath: '/feeds' 206 preLoaderRoute: typeof FeedsRouteImport 207 parentRoute: typeof rootRouteImport 208 } 209 '/_pathlessLayout': { 210 id: '/_pathlessLayout' 211 path: '' 212 fullPath: '' 213 preLoaderRoute: typeof PathlessLayoutRouteImport 214 parentRoute: typeof rootRouteImport 215 } 216 '/': { 217 id: '/' 218 path: '/' 219 fullPath: '/' 220 preLoaderRoute: typeof IndexRouteImport 221 parentRoute: typeof rootRouteImport 222 } 223 '/callback/': { 224 id: '/callback/' 225 path: '/callback' 226 fullPath: '/callback' 227 preLoaderRoute: typeof CallbackIndexRouteImport 228 parentRoute: typeof rootRouteImport 229 } 230 '/_pathlessLayout/_nested-layout': { 231 id: '/_pathlessLayout/_nested-layout' 232 path: '' 233 fullPath: '' 234 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteImport 235 parentRoute: typeof PathlessLayoutRoute 236 } 237 '/profile/$did/': { 238 id: '/profile/$did/' 239 path: '/profile/$did' 240 fullPath: '/profile/$did' 241 preLoaderRoute: typeof ProfileDidIndexRouteImport 242 parentRoute: typeof rootRouteImport 243 } 244 '/_pathlessLayout/_nested-layout/route-b': { 245 id: '/_pathlessLayout/_nested-layout/route-b' 246 path: '/route-b' 247 fullPath: '/route-b' 248 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteBRouteImport 249 parentRoute: typeof PathlessLayoutNestedLayoutRoute 250 } 251 '/_pathlessLayout/_nested-layout/route-a': { 252 id: '/_pathlessLayout/_nested-layout/route-a' 253 path: '/route-a' 254 fullPath: '/route-a' 255 preLoaderRoute: typeof PathlessLayoutNestedLayoutRouteARouteImport 256 parentRoute: typeof PathlessLayoutNestedLayoutRoute 257 } 258 '/profile/$did/post/$rkey': { 259 id: '/profile/$did/post/$rkey' 260 path: '/profile/$did/post/$rkey' 261 fullPath: '/profile/$did/post/$rkey' 262 preLoaderRoute: typeof ProfileDidPostRkeyRouteImport 263 parentRoute: typeof rootRouteImport 264 } 265 } 266} 267 268interface PathlessLayoutNestedLayoutRouteChildren { 269 PathlessLayoutNestedLayoutRouteARoute: typeof PathlessLayoutNestedLayoutRouteARoute 270 PathlessLayoutNestedLayoutRouteBRoute: typeof PathlessLayoutNestedLayoutRouteBRoute 271} 272 273const PathlessLayoutNestedLayoutRouteChildren: PathlessLayoutNestedLayoutRouteChildren = 274 { 275 PathlessLayoutNestedLayoutRouteARoute: 276 PathlessLayoutNestedLayoutRouteARoute, 277 PathlessLayoutNestedLayoutRouteBRoute: 278 PathlessLayoutNestedLayoutRouteBRoute, 279 } 280 281const PathlessLayoutNestedLayoutRouteWithChildren = 282 PathlessLayoutNestedLayoutRoute._addFileChildren( 283 PathlessLayoutNestedLayoutRouteChildren, 284 ) 285 286interface PathlessLayoutRouteChildren { 287 PathlessLayoutNestedLayoutRoute: typeof PathlessLayoutNestedLayoutRouteWithChildren 288} 289 290const PathlessLayoutRouteChildren: PathlessLayoutRouteChildren = { 291 PathlessLayoutNestedLayoutRoute: PathlessLayoutNestedLayoutRouteWithChildren, 292} 293 294const PathlessLayoutRouteWithChildren = PathlessLayoutRoute._addFileChildren( 295 PathlessLayoutRouteChildren, 296) 297 298const rootRouteChildren: RootRouteChildren = { 299 IndexRoute: IndexRoute, 300 PathlessLayoutRoute: PathlessLayoutRouteWithChildren, 301 FeedsRoute: FeedsRoute, 302 NotificationsRoute: NotificationsRoute, 303 SearchRoute: SearchRoute, 304 SettingsRoute: SettingsRoute, 305 CallbackIndexRoute: CallbackIndexRoute, 306 ProfileDidIndexRoute: ProfileDidIndexRoute, 307 ProfileDidPostRkeyRoute: ProfileDidPostRkeyRoute, 308} 309export const routeTree = rootRouteImport 310 ._addFileChildren(rootRouteChildren) 311 ._addFileTypes<FileRouteTypes>()