Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
361 B
Text
12 lines
361 B
Text
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 {};
|