Rocky_Mountain_Vending/.pnpm-store/v10/files/ae/0791eaa5d6c778d6d12062c42e23e434d7c9720e4ec643e5048a7cea5eb63642ed601e03916bf7fd55cbe64f6004212e8a696470b9d2ab47e87a9ed58db070
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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 {};