You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
460 B
8 lines
460 B
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>;
|
|
|