Files
verify/frontend/node_modules/next/dist/export/index.d.ts
Mohamed Mathar Irfan ed6610d5d8 Initial project upload
2026-07-28 17:57:02 +05:30

9 lines
460 B
TypeScript

import type { ExportAppResult, ExportAppOptions } from './types';
import '../server/require-hook';
import type { Span } from '../trace';
export declare class ExportError extends Error {
code: string;
}
export declare function exportAppImpl(dir: string, options: Readonly<ExportAppOptions>, span: Span): Promise<ExportAppResult | null>;
export default function exportApp(dir: string, options: ExportAppOptions, span: Span): Promise<ExportAppResult | null>;