/* 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 RoomsRouteImport } from './routes/rooms'
import { Route as OrderRouteImport } from './routes/order'
import { Route as MenuRouteImport } from './routes/menu'
import { Route as EventsRouteImport } from './routes/events'
import { Route as ContactRouteImport } from './routes/contact'
import { Route as BookTableRouteImport } from './routes/book-table'
import { Route as BookRoomRouteImport } from './routes/book-room'
import { Route as AboutRouteImport } from './routes/about'
import { Route as IndexRouteImport } from './routes/index'

const RoomsRoute = RoomsRouteImport.update({
  id: '/rooms',
  path: '/rooms',
  getParentRoute: () => rootRouteImport,
} as any)
const OrderRoute = OrderRouteImport.update({
  id: '/order',
  path: '/order',
  getParentRoute: () => rootRouteImport,
} as any)
const MenuRoute = MenuRouteImport.update({
  id: '/menu',
  path: '/menu',
  getParentRoute: () => rootRouteImport,
} as any)
const EventsRoute = EventsRouteImport.update({
  id: '/events',
  path: '/events',
  getParentRoute: () => rootRouteImport,
} as any)
const ContactRoute = ContactRouteImport.update({
  id: '/contact',
  path: '/contact',
  getParentRoute: () => rootRouteImport,
} as any)
const BookTableRoute = BookTableRouteImport.update({
  id: '/book-table',
  path: '/book-table',
  getParentRoute: () => rootRouteImport,
} as any)
const BookRoomRoute = BookRoomRouteImport.update({
  id: '/book-room',
  path: '/book-room',
  getParentRoute: () => rootRouteImport,
} as any)
const AboutRoute = AboutRouteImport.update({
  id: '/about',
  path: '/about',
  getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
  id: '/',
  path: '/',
  getParentRoute: () => rootRouteImport,
} as any)

export interface FileRoutesByFullPath {
  '/': typeof IndexRoute
  '/about': typeof AboutRoute
  '/book-room': typeof BookRoomRoute
  '/book-table': typeof BookTableRoute
  '/contact': typeof ContactRoute
  '/events': typeof EventsRoute
  '/menu': typeof MenuRoute
  '/order': typeof OrderRoute
  '/rooms': typeof RoomsRoute
}
export interface FileRoutesByTo {
  '/': typeof IndexRoute
  '/about': typeof AboutRoute
  '/book-room': typeof BookRoomRoute
  '/book-table': typeof BookTableRoute
  '/contact': typeof ContactRoute
  '/events': typeof EventsRoute
  '/menu': typeof MenuRoute
  '/order': typeof OrderRoute
  '/rooms': typeof RoomsRoute
}
export interface FileRoutesById {
  __root__: typeof rootRouteImport
  '/': typeof IndexRoute
  '/about': typeof AboutRoute
  '/book-room': typeof BookRoomRoute
  '/book-table': typeof BookTableRoute
  '/contact': typeof ContactRoute
  '/events': typeof EventsRoute
  '/menu': typeof MenuRoute
  '/order': typeof OrderRoute
  '/rooms': typeof RoomsRoute
}
export interface FileRouteTypes {
  fileRoutesByFullPath: FileRoutesByFullPath
  fullPaths:
    | '/'
    | '/about'
    | '/book-room'
    | '/book-table'
    | '/contact'
    | '/events'
    | '/menu'
    | '/order'
    | '/rooms'
  fileRoutesByTo: FileRoutesByTo
  to:
    | '/'
    | '/about'
    | '/book-room'
    | '/book-table'
    | '/contact'
    | '/events'
    | '/menu'
    | '/order'
    | '/rooms'
  id:
    | '__root__'
    | '/'
    | '/about'
    | '/book-room'
    | '/book-table'
    | '/contact'
    | '/events'
    | '/menu'
    | '/order'
    | '/rooms'
  fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
  IndexRoute: typeof IndexRoute
  AboutRoute: typeof AboutRoute
  BookRoomRoute: typeof BookRoomRoute
  BookTableRoute: typeof BookTableRoute
  ContactRoute: typeof ContactRoute
  EventsRoute: typeof EventsRoute
  MenuRoute: typeof MenuRoute
  OrderRoute: typeof OrderRoute
  RoomsRoute: typeof RoomsRoute
}

declare module '@tanstack/react-router' {
  interface FileRoutesByPath {
    '/rooms': {
      id: '/rooms'
      path: '/rooms'
      fullPath: '/rooms'
      preLoaderRoute: typeof RoomsRouteImport
      parentRoute: typeof rootRouteImport
    }
    '/order': {
      id: '/order'
      path: '/order'
      fullPath: '/order'
      preLoaderRoute: typeof OrderRouteImport
      parentRoute: typeof rootRouteImport
    }
    '/menu': {
      id: '/menu'
      path: '/menu'
      fullPath: '/menu'
      preLoaderRoute: typeof MenuRouteImport
      parentRoute: typeof rootRouteImport
    }
    '/events': {
      id: '/events'
      path: '/events'
      fullPath: '/events'
      preLoaderRoute: typeof EventsRouteImport
      parentRoute: typeof rootRouteImport
    }
    '/contact': {
      id: '/contact'
      path: '/contact'
      fullPath: '/contact'
      preLoaderRoute: typeof ContactRouteImport
      parentRoute: typeof rootRouteImport
    }
    '/book-table': {
      id: '/book-table'
      path: '/book-table'
      fullPath: '/book-table'
      preLoaderRoute: typeof BookTableRouteImport
      parentRoute: typeof rootRouteImport
    }
    '/book-room': {
      id: '/book-room'
      path: '/book-room'
      fullPath: '/book-room'
      preLoaderRoute: typeof BookRoomRouteImport
      parentRoute: typeof rootRouteImport
    }
    '/about': {
      id: '/about'
      path: '/about'
      fullPath: '/about'
      preLoaderRoute: typeof AboutRouteImport
      parentRoute: typeof rootRouteImport
    }
    '/': {
      id: '/'
      path: '/'
      fullPath: '/'
      preLoaderRoute: typeof IndexRouteImport
      parentRoute: typeof rootRouteImport
    }
  }
}

const rootRouteChildren: RootRouteChildren = {
  IndexRoute: IndexRoute,
  AboutRoute: AboutRoute,
  BookRoomRoute: BookRoomRoute,
  BookTableRoute: BookTableRoute,
  ContactRoute: ContactRoute,
  EventsRoute: EventsRoute,
  MenuRoute: MenuRoute,
  OrderRoute: OrderRoute,
  RoomsRoute: RoomsRoute,
}
export const routeTree = rootRouteImport
  ._addFileChildren(rootRouteChildren)
  ._addFileTypes<FileRouteTypes>()
