11 lines
325 B
TypeScript
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 {};
|