next
Version:
The React Framework
13 lines (12 loc) • 368 B
TypeScript
import '../server/lib/cpu-profile';
export type NextAnalyzeOptions = {
experimentalAnalyze?: boolean;
profile?: boolean;
mangling: boolean;
port: number;
output: boolean;
experimentalAppOnly?: boolean;
};
declare const nextAnalyze: (options: NextAnalyzeOptions, directory?: string) => Promise<void>;
export { nextAnalyze };