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
29 lines
784 B
Plaintext
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 |