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