threedviewer 2.4.0 → 2.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,9 +23,9 @@ export declare class MemoryMonitor {
23
23
  /**
24
24
  * Log memory usage to console
25
25
  */
26
- static logMemoryUsage(label?: string): void;
26
+ static logMemoryUsage(_label?: string): void;
27
27
  /**
28
28
  * Monitor memory usage over time
29
29
  */
30
- static startMonitoring(intervalMs?: number, label?: string): () => void;
30
+ static startMonitoring(intervalMs?: number, _label?: string): () => void;
31
31
  }