Mercurial
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/love/epi/src/routeTree.gen.ts Mon Dec 01 20:35:56 2025 -0800 @@ -0,0 +1,95 @@ +/* eslint-disable */ + +// @ts-nocheck + +// noinspection JSUnusedGlobalSymbols + +// This file was automatically generated by TanStack Router. +// You should NOT make any changes in this file as it will be overwritten. +// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified. + +import { Route as rootRouteImport } from './routes/__root' +import { Route as IndexRouteImport } from './routes/index' +import { Route as ChatIndexRouteImport } from './routes/chat/index' +import { Route as ChatChatIdRouteImport } from './routes/chat/$chatId' + +const IndexRoute = IndexRouteImport.update({ + id: '/', + path: '/', + getParentRoute: () => rootRouteImport, +} as any) +const ChatIndexRoute = ChatIndexRouteImport.update({ + id: '/chat/', + path: '/chat/', + getParentRoute: () => rootRouteImport, +} as any) +const ChatChatIdRoute = ChatChatIdRouteImport.update({ + id: '/chat/$chatId', + path: '/chat/$chatId', + getParentRoute: () => rootRouteImport, +} as any) + +export interface FileRoutesByFullPath { + '/': typeof IndexRoute + '/chat/$chatId': typeof ChatChatIdRoute + '/chat': typeof ChatIndexRoute +} +export interface FileRoutesByTo { + '/': typeof IndexRoute + '/chat/$chatId': typeof ChatChatIdRoute + '/chat': typeof ChatIndexRoute +} +export interface FileRoutesById { + __root__: typeof rootRouteImport + '/': typeof IndexRoute + '/chat/$chatId': typeof ChatChatIdRoute + '/chat/': typeof ChatIndexRoute +} +export interface FileRouteTypes { + fileRoutesByFullPath: FileRoutesByFullPath + fullPaths: '/' | '/chat/$chatId' | '/chat' + fileRoutesByTo: FileRoutesByTo + to: '/' | '/chat/$chatId' | '/chat' + id: '__root__' | '/' | '/chat/$chatId' | '/chat/' + fileRoutesById: FileRoutesById +} +export interface RootRouteChildren { + IndexRoute: typeof IndexRoute + ChatChatIdRoute: typeof ChatChatIdRoute + ChatIndexRoute: typeof ChatIndexRoute +} + +declare module '@tanstack/react-router' { + interface FileRoutesByPath { + '/': { + id: '/' + path: '/' + fullPath: '/' + preLoaderRoute: typeof IndexRouteImport + parentRoute: typeof rootRouteImport + } + '/chat/': { + id: '/chat/' + path: '/chat' + fullPath: '/chat' + preLoaderRoute: typeof ChatIndexRouteImport + parentRoute: typeof rootRouteImport + } + '/chat/$chatId': { + id: '/chat/$chatId' + path: '/chat/$chatId' + fullPath: '/chat/$chatId' + preLoaderRoute: typeof ChatChatIdRouteImport + parentRoute: typeof rootRouteImport + } + } +} + +const rootRouteChildren: RootRouteChildren = { + IndexRoute: IndexRoute, + ChatChatIdRoute: ChatChatIdRoute, + ChatIndexRoute: ChatIndexRoute, +} +export const routeTree = rootRouteImport + ._addFileChildren(rootRouteChildren) + ._addFileTypes<FileRouteTypes>()