Rocky_Mountain_Vending/.pnpm-store/v10/files/c1/7d9af212892dfcaae30c741a7e0229b444d7ba9b9904381a0b54a7b3f3d35a83aa490fc95a1bd8716c3538d968069fccdbc219047af39df8cfd27590fd3a92
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

20 lines
459 B
Text

export declare const eventNameErrorFeedback = "NEXT_ERROR_FEEDBACK";
export type EventErrorFeedback = {
errorCode: string;
wasHelpful: boolean;
};
/**
* Records telemetry for error feedback.
*
* @example
* ```ts
* telemetry.record(eventErrorFeedback({
* errorCode: 'E1',
* wasHelpful: true
* }))
* ```
*/
export declare function eventErrorFeedback(event: EventErrorFeedback): {
eventName: string;
payload: EventErrorFeedback;
};