()
| 250 | } |
| 251 | |
| 252 | shutdown(): void { |
| 253 | if (this.flushInterval) { |
| 254 | clearInterval(this.flushInterval); |
| 255 | this.flushInterval = null; |
| 256 | } |
| 257 | |
| 258 | // Flush any remaining events |
| 259 | this.flushEvents(); |
| 260 | } |
| 261 | |
| 262 | // Convenience methods |
| 263 | isEnabled(): boolean { |
no test coverage detected