Rocky_Mountain_Vending/.pnpm-store/v10/files/af/73c0b90168944e8bfc857bb4af5ddf1fbc4e4b24c3472ebdad908f7d499ae36906b2503f1b93d2e09ecaea1e70f032cf84a661f6370d1d4ce4ce83d1ecd67d
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

7 lines
191 B
Text

import type { TraceEvent } from '../types';
export type Reporter = {
flushAll: (opts?: {
end: boolean;
}) => Promise<void> | void;
report: (event: TraceEvent) => void;
};