Accumulated byte and object counts for one breakdown key (category name or entity type name).

interface AcDbMemoryEstimateBucket {
    bytes: number;
    count: number;
}

Properties

Properties

bytes: number

Estimated retained payload size in bytes for this key.

count: number

Number of JS objects attributed to this key. For entity-type buckets this is the entity instance count; for category buckets it is the visited object count in that category.