| 14 | const buildId = typeof __BUILD_ID__ !== "undefined" ? __BUILD_ID__ : "unknown"; |
| 15 | |
| 16 | interface BeaconEvent { |
| 17 | et: "error"; |
| 18 | path: string; |
| 19 | did: string; |
| 20 | sid: string; |
| 21 | ts: number; |
| 22 | type: string; |
| 23 | bid: string; |
| 24 | props: { msg: string; stack?: string }; |
| 25 | } |
| 26 | |
| 27 | let pending: BeaconEvent[] = []; |
| 28 | let timer: ReturnType<typeof setTimeout> | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected