// This file is generated automatically by Next.js // Do not edit this file manually type AppRoutes = "/" | "/about" | "/docs" | "/homepage" | "/network" | "/network/api" | "/network/rooms" | "/notify" | "/pricing" | "/pricing/enterprise" | "/pricing/faq" | "/search" | "/skills" | "/skills/docs" | "/skills/publish" | "/solutions" | "/solutions/governance" | "/solutions/memory" | "/solutions/rooms" type PageRoutes = never type LayoutRoutes = "/homepage" | "/notify" | "/project" | "/project/repo" | "/repository" | "/repository/settings" | "/settings" | "/workspace" type RedirectRoutes = never type RewriteRoutes = never type Routes = AppRoutes | PageRoutes | LayoutRoutes | RedirectRoutes | RewriteRoutes interface ParamMap { "/": {} "/about": {} "/docs": {} "/homepage": {} "/network": {} "/network/api": {} "/network/rooms": {} "/notify": {} "/pricing": {} "/pricing/enterprise": {} "/pricing/faq": {} "/project": {} "/project/repo": {} "/repository": {} "/repository/settings": {} "/search": {} "/settings": {} "/skills": {} "/skills/docs": {} "/skills/publish": {} "/solutions": {} "/solutions/governance": {} "/solutions/memory": {} "/solutions/rooms": {} "/workspace": {} } export type ParamsOf = ParamMap[Route] interface LayoutSlotMap { "/homepage": never "/notify": never "/project": never "/project/repo": never "/repository": never "/repository/settings": never "/settings": never "/workspace": never } export type { AppRoutes, PageRoutes, LayoutRoutes, RedirectRoutes, RewriteRoutes, ParamMap } declare global { /** * Props for Next.js App Router page components * @example * ```tsx * export default function Page(props: PageProps<'/blog/[slug]'>) { * const { slug } = await props.params * return
Blog post: {slug}
* } * ``` */ interface PageProps { params: Promise searchParams: Promise> } /** * Props for Next.js App Router layout components * @example * ```tsx * export default function Layout(props: LayoutProps<'/dashboard'>) { * return
{props.children}
* } * ``` */ type LayoutProps = { params: Promise children: React.ReactNode } & { [K in LayoutSlotMap[LayoutRoute]]: React.ReactNode } }