comparison love/epi/src/routeTree.gen.ts @ 38:cf9caa4abc3e

[Love] FE and BE. Can chat and render images. Also created MCP for powerpoint generations.
author MrJuneJune <me@mrjunejune.com>
date Mon, 01 Dec 2025 20:35:56 -0800
parents
children
comparison
equal deleted inserted replaced
37:fb9bcd3145cb 38:cf9caa4abc3e
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
11 import { Route as rootRouteImport } from './routes/__root'
12 import { Route as IndexRouteImport } from './routes/index'
13 import { Route as ChatIndexRouteImport } from './routes/chat/index'
14 import { Route as ChatChatIdRouteImport } from './routes/chat/$chatId'
15
16 const IndexRoute = IndexRouteImport.update({
17 id: '/',
18 path: '/',
19 getParentRoute: () => rootRouteImport,
20 } as any)
21 const ChatIndexRoute = ChatIndexRouteImport.update({
22 id: '/chat/',
23 path: '/chat/',
24 getParentRoute: () => rootRouteImport,
25 } as any)
26 const ChatChatIdRoute = ChatChatIdRouteImport.update({
27 id: '/chat/$chatId',
28 path: '/chat/$chatId',
29 getParentRoute: () => rootRouteImport,
30 } as any)
31
32 export interface FileRoutesByFullPath {
33 '/': typeof IndexRoute
34 '/chat/$chatId': typeof ChatChatIdRoute
35 '/chat': typeof ChatIndexRoute
36 }
37 export interface FileRoutesByTo {
38 '/': typeof IndexRoute
39 '/chat/$chatId': typeof ChatChatIdRoute
40 '/chat': typeof ChatIndexRoute
41 }
42 export interface FileRoutesById {
43 __root__: typeof rootRouteImport
44 '/': typeof IndexRoute
45 '/chat/$chatId': typeof ChatChatIdRoute
46 '/chat/': typeof ChatIndexRoute
47 }
48 export interface FileRouteTypes {
49 fileRoutesByFullPath: FileRoutesByFullPath
50 fullPaths: '/' | '/chat/$chatId' | '/chat'
51 fileRoutesByTo: FileRoutesByTo
52 to: '/' | '/chat/$chatId' | '/chat'
53 id: '__root__' | '/' | '/chat/$chatId' | '/chat/'
54 fileRoutesById: FileRoutesById
55 }
56 export interface RootRouteChildren {
57 IndexRoute: typeof IndexRoute
58 ChatChatIdRoute: typeof ChatChatIdRoute
59 ChatIndexRoute: typeof ChatIndexRoute
60 }
61
62 declare module '@tanstack/react-router' {
63 interface FileRoutesByPath {
64 '/': {
65 id: '/'
66 path: '/'
67 fullPath: '/'
68 preLoaderRoute: typeof IndexRouteImport
69 parentRoute: typeof rootRouteImport
70 }
71 '/chat/': {
72 id: '/chat/'
73 path: '/chat'
74 fullPath: '/chat'
75 preLoaderRoute: typeof ChatIndexRouteImport
76 parentRoute: typeof rootRouteImport
77 }
78 '/chat/$chatId': {
79 id: '/chat/$chatId'
80 path: '/chat/$chatId'
81 fullPath: '/chat/$chatId'
82 preLoaderRoute: typeof ChatChatIdRouteImport
83 parentRoute: typeof rootRouteImport
84 }
85 }
86 }
87
88 const rootRouteChildren: RootRouteChildren = {
89 IndexRoute: IndexRoute,
90 ChatChatIdRoute: ChatChatIdRoute,
91 ChatIndexRoute: ChatIndexRoute,
92 }
93 export const routeTree = rootRouteImport
94 ._addFileChildren(rootRouteChildren)
95 ._addFileTypes<FileRouteTypes>()