* Stop automatic cleanup
()
| 171 | * Stop automatic cleanup |
| 172 | */ |
| 173 | stopAutoCleanup(): void { |
| 174 | if (this.cleanupInterval) { |
| 175 | clearInterval(this.cleanupInterval); |
| 176 | this.cleanupInterval = null; |
| 177 | } |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | // Export singleton instance |
nothing calls this directly
no outgoing calls
no test coverage detected