First concept

This commit is contained in:
will
2026-04-02 19:13:46 +01:00
commit 1da5da43e1
9785 changed files with 2077949 additions and 0 deletions

12
node_modules/next/dist/export/routes/app-page.d.ts generated vendored Normal file
View File

@@ -0,0 +1,12 @@
import type { ExportRouteResult, FileWriter } from '../types';
import type { RenderOpts } from '../../server/app-render/types';
import type { NextParsedUrlQuery } from '../../server/request-meta';
import type { MockedRequest, MockedResponse } from '../../server/lib/mock-request';
export declare const enum ExportedAppPageFiles {
HTML = "HTML",
FLIGHT = "FLIGHT",
PREFETCH_FLIGHT = "PREFETCH_FLIGHT",
META = "META",
POSTPONED = "POSTPONED"
}
export declare function exportAppPage(req: MockedRequest, res: MockedResponse, page: string, path: string, pathname: string, query: NextParsedUrlQuery, renderOpts: RenderOpts, htmlFilepath: string, debugOutput: boolean, isDynamicError: boolean, fileWriter: FileWriter): Promise<ExportRouteResult>;