Rocky_Mountain_Vending/.pnpm-store/v10/files/52/d1f6bb35296b67a124488bf24670eaf1ebd689f910a11c01cfe4f9962fbc95f516e16ccf6e0aceb2b8e2387735627fcea3357bb681f6f54d8a350a1da60f42
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

29 lines
No EOL
784 B
Text

import type { DsnLike } from './types-hoist/dsn';
/**
* All properties the report dialog supports
*/
export interface ReportDialogOptions extends Record<string, unknown> {
eventId?: string;
dsn?: DsnLike;
user?: {
email?: string;
name?: string;
};
lang?: string;
title?: string;
subtitle?: string;
subtitle2?: string;
labelName?: string;
labelEmail?: string;
labelComments?: string;
labelClose?: string;
labelSubmit?: string;
errorGeneric?: string;
errorFormEntry?: string;
successMessage?: string;
/** Callback after reportDialog showed up */
onLoad?(this: void): void;
/** Callback after reportDialog closed */
onClose?(this: void): void;
}
//# sourceMappingURL=report-dialog.d.ts.map