MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / CrashReportingConfig

Interface CrashReportingConfig

packages/app/src/crash-reporting.ts:15–20  ·  view source on GitHub ↗

* Desktop-only renderer crash reporting. * * This bundle is served identically to `executor web`, self-host, and the * desktop app, so nothing is baked in at build time. Inside the desktop app * the preload bridge (`window.executor`) hands over a DSN at runtime — * everywhere else the bridge is

Source from the content-addressed store, hash-verified

13 */
14
15interface CrashReportingConfig {
16 readonly dsn: string;
17 readonly release: string;
18 readonly environment: string;
19 readonly runId: string;
20}
21
22interface CrashReportingBridge {
23 readonly getCrashReporting?: () => Promise<CrashReportingConfig | null>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected