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>
29 lines
809 B
Text
29 lines
809 B
Text
import { 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
|