* 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
| 13 | */ |
| 14 | |
| 15 | interface CrashReportingConfig { |
| 16 | readonly dsn: string; |
| 17 | readonly release: string; |
| 18 | readonly environment: string; |
| 19 | readonly runId: string; |
| 20 | } |
| 21 | |
| 22 | interface CrashReportingBridge { |
| 23 | readonly getCrashReporting?: () => Promise<CrashReportingConfig | null>; |
nothing calls this directly
no outgoing calls
no test coverage detected