@sheetwrite/coreinterface
Retained logical payload and allocated capacity attributed to one exclusive owner.
Members 5
owner
readonly owner: string;logicalBytes Bytes containing live logical payload.
readonly logicalBytes: number;Bytes containing live logical payload. Never includes runtime observations.
allocatedBytes Container capacity owned exclusively by this owner.
readonly allocatedBytes: number;entries
readonly entries: number;measurement
readonly measurement: | "exact-capacity" | "hash-capacity-v1" | "typed-array-byte-length" | "utf16-upper-bound" | "entry-count-only";Declaration
View full TypeScript declaration
export interface ResourceOwnerBytes { readonly owner: string; readonly logicalBytes: number; readonly allocatedBytes: number; readonly entries: number; readonly measurement: | "exact-capacity" | "hash-capacity-v1" | "typed-array-byte-length" | "utf16-upper-bound" | "entry-count-only";}