~bigbes/lethe

ref: f903c872196ad6f6bf020e59637993f119438d7f lethe/web/src/routeTree.gen.ts -rw-r--r-- 1.0 KiB
f903c872 — Eugene Blikh web: scaffold vite/react/ts project, port design tokens and primitives a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* 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'

export interface FileRoutesByFullPath {}
export interface FileRoutesByTo {}
export interface FileRoutesById {
  __root__: typeof rootRouteImport
}
export interface FileRouteTypes {
  fileRoutesByFullPath: FileRoutesByFullPath
  fullPaths: never
  fileRoutesByTo: FileRoutesByTo
  to: never
  id: '__root__'
  fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {}

declare module '@tanstack/react-router' {
  interface FileRoutesByPath {}
}

const rootRouteChildren: RootRouteChildren = {}
export const routeTree = rootRouteImport
  ._addFileChildren(rootRouteChildren)
  ._addFileTypes<FileRouteTypes>()