/* 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 PrivacyRouteImport } from './routes/privacy' import { Route as PricingRouteImport } from './routes/pricing' import { Route as IndexRouteImport } from './routes/index' import { Route as BlogsIndexRouteImport } from './routes/blogs/index' import { Route as JsScriptDotjsRouteImport } from './routes/js/script[.]js' import { Route as BlogsSplatRouteImport } from './routes/blogs/$' import { Route as ApiSubscribeRouteImport } from './routes/api/subscribe' import { Route as ApiEventRouteImport } from './routes/api/event' const PrivacyRoute = PrivacyRouteImport.update({ id: '/privacy', path: '/privacy', getParentRoute: () => rootRouteImport, } as any) const PricingRoute = PricingRouteImport.update({ id: '/pricing', path: '/pricing', getParentRoute: () => rootRouteImport, } as any) const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) const BlogsIndexRoute = BlogsIndexRouteImport.update({ id: '/blogs/', path: '/blogs/', getParentRoute: () => rootRouteImport, } as any) const JsScriptDotjsRoute = JsScriptDotjsRouteImport.update({ id: '/js/script.js', path: '/js/script.js', getParentRoute: () => rootRouteImport, } as any) const BlogsSplatRoute = BlogsSplatRouteImport.update({ id: '/blogs/$', path: '/blogs/$', getParentRoute: () => rootRouteImport, } as any) const ApiSubscribeRoute = ApiSubscribeRouteImport.update({ id: '/api/subscribe', path: '/api/subscribe', getParentRoute: () => rootRouteImport, } as any) const ApiEventRoute = ApiEventRouteImport.update({ id: '/api/event', path: '/api/event', getParentRoute: () => rootRouteImport, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/pricing': typeof PricingRoute '/privacy': typeof PrivacyRoute '/api/event': typeof ApiEventRoute '/api/subscribe': typeof ApiSubscribeRoute '/blogs/$': typeof BlogsSplatRoute '/js/script.js': typeof JsScriptDotjsRoute '/blogs/': typeof BlogsIndexRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/pricing': typeof PricingRoute '/privacy': typeof PrivacyRoute '/api/event': typeof ApiEventRoute '/api/subscribe': typeof ApiSubscribeRoute '/blogs/$': typeof BlogsSplatRoute '/js/script.js': typeof JsScriptDotjsRoute '/blogs': typeof BlogsIndexRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/pricing': typeof PricingRoute '/privacy': typeof PrivacyRoute '/api/event': typeof ApiEventRoute '/api/subscribe': typeof ApiSubscribeRoute '/blogs/$': typeof BlogsSplatRoute '/js/script.js': typeof JsScriptDotjsRoute '/blogs/': typeof BlogsIndexRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: | '/' | '/pricing' | '/privacy' | '/api/event' | '/api/subscribe' | '/blogs/$' | '/js/script.js' | '/blogs/' fileRoutesByTo: FileRoutesByTo to: | '/' | '/pricing' | '/privacy' | '/api/event' | '/api/subscribe' | '/blogs/$' | '/js/script.js' | '/blogs' id: | '__root__' | '/' | '/pricing' | '/privacy' | '/api/event' | '/api/subscribe' | '/blogs/$' | '/js/script.js' | '/blogs/' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute PricingRoute: typeof PricingRoute PrivacyRoute: typeof PrivacyRoute ApiEventRoute: typeof ApiEventRoute ApiSubscribeRoute: typeof ApiSubscribeRoute BlogsSplatRoute: typeof BlogsSplatRoute JsScriptDotjsRoute: typeof JsScriptDotjsRoute BlogsIndexRoute: typeof BlogsIndexRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/privacy': { id: '/privacy' path: '/privacy' fullPath: '/privacy' preLoaderRoute: typeof PrivacyRouteImport parentRoute: typeof rootRouteImport } '/pricing': { id: '/pricing' path: '/pricing' fullPath: '/pricing' preLoaderRoute: typeof PricingRouteImport parentRoute: typeof rootRouteImport } '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } '/blogs/': { id: '/blogs/' path: '/blogs' fullPath: '/blogs/' preLoaderRoute: typeof BlogsIndexRouteImport parentRoute: typeof rootRouteImport } '/js/script.js': { id: '/js/script.js' path: '/js/script.js' fullPath: '/js/script.js' preLoaderRoute: typeof JsScriptDotjsRouteImport parentRoute: typeof rootRouteImport } '/blogs/$': { id: '/blogs/$' path: '/blogs/$' fullPath: '/blogs/$' preLoaderRoute: typeof BlogsSplatRouteImport parentRoute: typeof rootRouteImport } '/api/subscribe': { id: '/api/subscribe' path: '/api/subscribe' fullPath: '/api/subscribe' preLoaderRoute: typeof ApiSubscribeRouteImport parentRoute: typeof rootRouteImport } '/api/event': { id: '/api/event' path: '/api/event' fullPath: '/api/event' preLoaderRoute: typeof ApiEventRouteImport parentRoute: typeof rootRouteImport } } } const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, PricingRoute: PricingRoute, PrivacyRoute: PrivacyRoute, ApiEventRoute: ApiEventRoute, ApiSubscribeRoute: ApiSubscribeRoute, BlogsSplatRoute: BlogsSplatRoute, JsScriptDotjsRoute: JsScriptDotjsRoute, BlogsIndexRoute: BlogsIndexRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes() import type { getRouter } from './router.tsx' import type { createStart } from '@tanstack/react-start' declare module '@tanstack/react-start' { interface Register { ssr: true router: Awaited> } }