Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
12
node_modules/next/dist/trace/report/index.d.ts
generated
vendored
Normal file
12
node_modules/next/dist/trace/report/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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 {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue