Skip to content

Type Alias: RamState

ts
type RamState = {
  total: number;
  free: number;
  wired: number;
};

Defined in: bindings/types.ts:32

Properties

total

ts
total: number;

Defined in: bindings/types.ts:36

The total amount of memory in bytes


free

ts
free: number;

Defined in: bindings/types.ts:42

The amount of free memory in bytes. This memory is immediately available for allocation.


wired

ts
wired: number;

Defined in: bindings/types.ts:47

The amount of wired memory (memory that cannot be evicted or moved to disk) in bytes