()
| 76 | stopped: boolean = false; |
| 77 | constructor(_opts: { sampleInterval: number; maxBufferSize: number }) {} |
| 78 | stop() { |
| 79 | this.stopped = true; |
| 80 | return Promise.resolve({ frames: [], stacks: [], samples: [], resources: [] }); |
| 81 | } |
| 82 | }; |
| 83 | |
| 84 | Sentry.init({ |