Skip to content
Sheetwrite

Sheetwrite / Documentation

RuntimeResourcePhaseDelta@sheetwrite/core

Owner and runtime deltas between two phases of the same operation.

Owner and runtime deltas between two phases of the same operation.

Members 6

schemaVersion
readonly schemaVersion: typeof RUNTIME_RESOURCE_SCHEMA_VERSION;
operation
readonly operation: RuntimeResourceOperation;
from
readonly from: RuntimeResourcePhase;
to
readonly to: RuntimeResourcePhase;
owners
readonly owners: readonly ResourceOwnerDelta[];
runtime
readonly runtime: { readonly usedJSHeapSize: number | null; readonly arrayBufferBytes: number | null; readonly externalBytes: number | null; readonly browserBackingStoreBytes: number | null; };

Declaration

View full TypeScript declaration
export interface RuntimeResourcePhaseDelta {
readonly schemaVersion: typeof RUNTIME_RESOURCE_SCHEMA_VERSION;
readonly operation: RuntimeResourceOperation;
readonly from: RuntimeResourcePhase;
readonly to: RuntimeResourcePhase;
readonly owners: readonly ResourceOwnerDelta[];
readonly runtime: {
readonly usedJSHeapSize: number | null;
readonly arrayBufferBytes: number | null;
readonly externalBytes: number | null;
readonly browserBackingStoreBytes: number | null;
};
}