securityos/node_modules/next/dist/export/index.d.ts

9 lines
460 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
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>;