IHeapStats
Interface Definition
ts
interface IHeapStats {
readonly heapSizeLimit: number;
readonly totalHeapSize: number;
readonly usedHeapSize: number;
readonly mallocedMemory: number;
readonly peakMallocedMemory: number;
};