Files
klz-cables.com/.pnpm-store/v10/files/52/d1f6bb35296b67a124488bf24670eaf1ebd689f910a11c01cfe4f9962fbc95f516e16ccf6e0aceb2b8e2387735627fcea3357bb681f6f54d8a350a1da60f42
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

29 lines
784 B
Plaintext

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