A very simple bookmarking webapp bookmarker.finxol.deno.net/
at main 113 lines 3.1 kB view raw
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 NewRouteImport } from './routes/new' 13import { Route as AccountRouteImport } from './routes/account' 14import { Route as AboutRouteImport } from './routes/about' 15import { Route as IndexRouteImport } from './routes/index' 16 17const NewRoute = NewRouteImport.update({ 18 id: '/new', 19 path: '/new', 20 getParentRoute: () => rootRouteImport, 21} as any) 22const AccountRoute = AccountRouteImport.update({ 23 id: '/account', 24 path: '/account', 25 getParentRoute: () => rootRouteImport, 26} as any) 27const AboutRoute = AboutRouteImport.update({ 28 id: '/about', 29 path: '/about', 30 getParentRoute: () => rootRouteImport, 31} as any) 32const IndexRoute = IndexRouteImport.update({ 33 id: '/', 34 path: '/', 35 getParentRoute: () => rootRouteImport, 36} as any) 37 38export interface FileRoutesByFullPath { 39 '/': typeof IndexRoute 40 '/about': typeof AboutRoute 41 '/account': typeof AccountRoute 42 '/new': typeof NewRoute 43} 44export interface FileRoutesByTo { 45 '/': typeof IndexRoute 46 '/about': typeof AboutRoute 47 '/account': typeof AccountRoute 48 '/new': typeof NewRoute 49} 50export interface FileRoutesById { 51 __root__: typeof rootRouteImport 52 '/': typeof IndexRoute 53 '/about': typeof AboutRoute 54 '/account': typeof AccountRoute 55 '/new': typeof NewRoute 56} 57export interface FileRouteTypes { 58 fileRoutesByFullPath: FileRoutesByFullPath 59 fullPaths: '/' | '/about' | '/account' | '/new' 60 fileRoutesByTo: FileRoutesByTo 61 to: '/' | '/about' | '/account' | '/new' 62 id: '__root__' | '/' | '/about' | '/account' | '/new' 63 fileRoutesById: FileRoutesById 64} 65export interface RootRouteChildren { 66 IndexRoute: typeof IndexRoute 67 AboutRoute: typeof AboutRoute 68 AccountRoute: typeof AccountRoute 69 NewRoute: typeof NewRoute 70} 71 72declare module '@tanstack/solid-router' { 73 interface FileRoutesByPath { 74 '/new': { 75 id: '/new' 76 path: '/new' 77 fullPath: '/new' 78 preLoaderRoute: typeof NewRouteImport 79 parentRoute: typeof rootRouteImport 80 } 81 '/account': { 82 id: '/account' 83 path: '/account' 84 fullPath: '/account' 85 preLoaderRoute: typeof AccountRouteImport 86 parentRoute: typeof rootRouteImport 87 } 88 '/about': { 89 id: '/about' 90 path: '/about' 91 fullPath: '/about' 92 preLoaderRoute: typeof AboutRouteImport 93 parentRoute: typeof rootRouteImport 94 } 95 '/': { 96 id: '/' 97 path: '/' 98 fullPath: '/' 99 preLoaderRoute: typeof IndexRouteImport 100 parentRoute: typeof rootRouteImport 101 } 102 } 103} 104 105const rootRouteChildren: RootRouteChildren = { 106 IndexRoute: IndexRoute, 107 AboutRoute: AboutRoute, 108 AccountRoute: AccountRoute, 109 NewRoute: NewRoute, 110} 111export const routeTree = rootRouteImport 112 ._addFileChildren(rootRouteChildren) 113 ._addFileTypes<FileRouteTypes>()