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.
16 lines
724 B
16 lines
724 B
|
2 months ago
|
import { Span } from '../trace';
|
||
|
|
import type { NextConfigComplete } from '../server/config-shared';
|
||
|
|
import { type BuildTraceContext } from './webpack/plugins/next-trace-entrypoints-plugin';
|
||
|
|
import { type PageInfos, type SerializedPageInfos } from './utils';
|
||
|
|
export declare function collectBuildTraces({ dir, config, distDir, pageInfos, staticPages, nextBuildSpan, hasSsrAmpPages, buildTraceContext, outputFileTracingRoot, }: {
|
||
|
|
dir: string;
|
||
|
|
distDir: string;
|
||
|
|
staticPages: string[];
|
||
|
|
hasSsrAmpPages: boolean;
|
||
|
|
outputFileTracingRoot: string;
|
||
|
|
pageInfos: PageInfos | SerializedPageInfos;
|
||
|
|
nextBuildSpan?: Span;
|
||
|
|
config: NextConfigComplete;
|
||
|
|
buildTraceContext?: BuildTraceContext;
|
||
|
|
}): Promise<void>;
|