UNPKG

next

Version:

The React Framework

13 lines (12 loc) 368 B
#!/usr/bin/env node 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 };