Files
scrap/node_modules/next/dist/trace/report/index.d.ts
2024-09-24 03:52:46 +00:00

11 lines
325 B
TypeScript

import type { TraceEvent } from '../types';
import type { Reporter } from './types';
declare class MultiReporter implements Reporter {
private reporters;
constructor(reporters: Reporter[]);
flushAll(): Promise<void>;
report(event: TraceEvent): void;
}
export declare const reporter: MultiReporter;
export {};