| 549 | * Memory monitor for tracking usage during operations |
| 550 | */ |
| 551 | export class MemoryMonitor { |
| 552 | private checkInterval: ReturnType<typeof setInterval> | null = null; |
| 553 | private peakUsage = 0; |
| 554 | private threshold: number; |
nothing calls this directly
no outgoing calls
no test coverage detected