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.
- package/dist/core/utils/MemoryMonitor.d.ts +2 -2
- package/dist/simple-viewer.es.js +1279 -1319
- package/dist/simple-viewer.umd.js +63 -63
- package/dist/utils/uuid.d.ts +10 -0
- package/package.json +1 -1
|
@@ -23,9 +23,9 @@ export declare class MemoryMonitor {
|
|
|
23
23
|
/**
|
|
24
24
|
* Log memory usage to console
|
|
25
25
|
*/
|
|
26
|
-
static logMemoryUsage(
|
|
26
|
+
static logMemoryUsage(_label?: string): void;
|
|
27
27
|
/**
|
|
28
28
|
* Monitor memory usage over time
|
|
29
29
|
*/
|
|
30
|
-
static startMonitoring(intervalMs?: number,
|
|
30
|
+
static startMonitoring(intervalMs?: number, _label?: string): () => void;
|
|
31
31
|
}
|