bpms_site/.svn/pristine/f4/f4c0e2fdd0b6550b85e3bc1d89dd6ea5f43998e9.svn-base
2025-11-02 16:38:49 +03:30

7 lines
477 B
Plaintext

import type { ExportPageResult } from '../types';
import type { IncrementalCache } from '../../server/lib/incremental-cache';
import { MockedRequest, MockedResponse } from '../../server/lib/mock-request';
export declare function exportAppRoute(req: MockedRequest, res: MockedResponse, params: {
[key: string]: string | string[];
} | undefined, page: string, incrementalCache: IncrementalCache | undefined, distDir: string, htmlFilepath: string): Promise<ExportPageResult>;