wilddragon-site/node_modules/next/dist/trace/report/index.d.ts

13 lines
361 B
TypeScript
Raw Normal View History

2026-04-17 15:51:01 -04:00
import type { TraceEvent } from '../types';
import type { Reporter } from './types';
declare class MultiReporter implements Reporter {
private reporters;
constructor(reporters: Reporter[]);
flushAll(opts?: {
end: boolean;
}): Promise<void>;
report(event: TraceEvent): void;
}
export declare const reporter: MultiReporter;
export {};