Backup ShiftedOffRoad

This commit is contained in:
Chase Gaines
2026-02-10 01:14:19 +00:00
commit 98d6b7a8c9
34111 changed files with 5841078 additions and 0 deletions

10
node_modules/next/dist/trace/report/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
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 {};