A web app for writing and sharing 301+ character Bluesky posts.
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 CallbackRouteImport } from './routes/callback'
13import { Route as AboutRouteImport } from './routes/about'
14import { Route as IndexRouteImport } from './routes/index'
15import { Route as PostUriRouteImport } from './routes/post/$uri'
16
17const CallbackRoute = CallbackRouteImport.update({
18 id: '/callback',
19 path: '/callback',
20 getParentRoute: () => rootRouteImport,
21} as any)
22const AboutRoute = AboutRouteImport.update({
23 id: '/about',
24 path: '/about',
25 getParentRoute: () => rootRouteImport,
26} as any)
27const IndexRoute = IndexRouteImport.update({
28 id: '/',
29 path: '/',
30 getParentRoute: () => rootRouteImport,
31} as any)
32const PostUriRoute = PostUriRouteImport.update({
33 id: '/post/$uri',
34 path: '/post/$uri',
35 getParentRoute: () => rootRouteImport,
36} as any)
37
38export interface FileRoutesByFullPath {
39 '/': typeof IndexRoute
40 '/about': typeof AboutRoute
41 '/callback': typeof CallbackRoute
42 '/post/$uri': typeof PostUriRoute
43}
44export interface FileRoutesByTo {
45 '/': typeof IndexRoute
46 '/about': typeof AboutRoute
47 '/callback': typeof CallbackRoute
48 '/post/$uri': typeof PostUriRoute
49}
50export interface FileRoutesById {
51 __root__: typeof rootRouteImport
52 '/': typeof IndexRoute
53 '/about': typeof AboutRoute
54 '/callback': typeof CallbackRoute
55 '/post/$uri': typeof PostUriRoute
56}
57export interface FileRouteTypes {
58 fileRoutesByFullPath: FileRoutesByFullPath
59 fullPaths: '/' | '/about' | '/callback' | '/post/$uri'
60 fileRoutesByTo: FileRoutesByTo
61 to: '/' | '/about' | '/callback' | '/post/$uri'
62 id: '__root__' | '/' | '/about' | '/callback' | '/post/$uri'
63 fileRoutesById: FileRoutesById
64}
65export interface RootRouteChildren {
66 IndexRoute: typeof IndexRoute
67 AboutRoute: typeof AboutRoute
68 CallbackRoute: typeof CallbackRoute
69 PostUriRoute: typeof PostUriRoute
70}
71
72declare module '@tanstack/react-router' {
73 interface FileRoutesByPath {
74 '/callback': {
75 id: '/callback'
76 path: '/callback'
77 fullPath: '/callback'
78 preLoaderRoute: typeof CallbackRouteImport
79 parentRoute: typeof rootRouteImport
80 }
81 '/about': {
82 id: '/about'
83 path: '/about'
84 fullPath: '/about'
85 preLoaderRoute: typeof AboutRouteImport
86 parentRoute: typeof rootRouteImport
87 }
88 '/': {
89 id: '/'
90 path: '/'
91 fullPath: '/'
92 preLoaderRoute: typeof IndexRouteImport
93 parentRoute: typeof rootRouteImport
94 }
95 '/post/$uri': {
96 id: '/post/$uri'
97 path: '/post/$uri'
98 fullPath: '/post/$uri'
99 preLoaderRoute: typeof PostUriRouteImport
100 parentRoute: typeof rootRouteImport
101 }
102 }
103}
104
105const rootRouteChildren: RootRouteChildren = {
106 IndexRoute: IndexRoute,
107 AboutRoute: AboutRoute,
108 CallbackRoute: CallbackRoute,
109 PostUriRoute: PostUriRoute,
110}
111export const routeTree = rootRouteImport
112 ._addFileChildren(rootRouteChildren)
113 ._addFileTypes<FileRouteTypes>()