// This file is generated automatically by Next.js // Do not edit this file manually // This file validates that all pages and layouts export the correct types import type { NextApiHandler } from "next/types.js" type PagesPageConfig = { default: React.ComponentType | ((props: any) => React.ReactNode | Promise | never | void) getStaticProps?: (context: any) => Promise | any getStaticPaths?: (context: any) => Promise | any getServerSideProps?: (context: any) => Promise | any getInitialProps?: (context: any) => Promise | any /** * Segment configuration for legacy Pages Router pages. * Validated at build-time by parsePagesSegmentConfig. */ config?: { maxDuration?: number runtime?: 'edge' | 'experimental-edge' | 'nodejs' | string // necessary unless config is exported as const regions?: string[] } } type ApiRouteConfig = { default: (req: any, res: any) => ReturnType config?: { api?: { bodyParser?: boolean | { sizeLimit?: number | string } responseLimit?: string | number | boolean externalResolver?: boolean } runtime?: 'edge' | 'experimental-edge' | 'nodejs' | string // necessary unless config is exported as const maxDuration?: number } } // Validate ../../src/pages/index.tsx { type __IsExpected = Specific const handler = {} as typeof import("../../src/pages/index.js") type __Check = __IsExpected // @ts-ignore type __Unused = __Check } // Validate ../../src/pages/not-found.tsx { type __IsExpected = Specific const handler = {} as typeof import("../../src/pages/not-found.js") type __Check = __IsExpected // @ts-ignore type __Unused = __Check } // Validate ../../src/pages/api/dictionary/[locale]/[word].ts { type __IsExpected = Specific const handler = {} as typeof import("../../src/pages/api/dictionary/[locale]/[word].js") type __Check = __IsExpected // @ts-ignore type __Unused = __Check } // Validate ../../src/pages/api/dictionary/[locale]/index.ts { type __IsExpected = Specific const handler = {} as typeof import("../../src/pages/api/dictionary/[locale]/index.js") type __Check = __IsExpected // @ts-ignore type __Unused = __Check } // Validate ../../src/pages/api/solve.ts { type __IsExpected = Specific const handler = {} as typeof import("../../src/pages/api/solve.js") type __Check = __IsExpected // @ts-ignore type __Unused = __Check } // Validate ../../src/pages/api/verify.ts { type __IsExpected = Specific const handler = {} as typeof import("../../src/pages/api/verify.js") type __Check = __IsExpected // @ts-ignore type __Unused = __Check } // Validate ../../src/pages/api/visit.ts { type __IsExpected = Specific const handler = {} as typeof import("../../src/pages/api/visit.js") type __Check = __IsExpected // @ts-ignore type __Unused = __Check }