Rocky_Mountain_Vending/.pnpm-store/v10/files/18/abc4512f9151097d0b35ce1d3692923272da52cb5f742b33f0022c883028828b4c53f2bd8a27da7f00564a066e0a7659dc6d6accde01ba78f8d5409788eb04
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

16 lines
355 B
Text

interface Payload {
meta: {
[key: string]: unknown;
};
context: {
anonymousId: string;
projectId: string;
sessionId: string;
};
events: Array<{
eventName: string;
fields: object;
}>;
}
export declare function postNextTelemetryPayload(payload: Payload, signal?: any): any;
export {};