Hoshimi
NPM
GuideAPI
Hoshimi
NPM
Guide
API

NodeMemory

The node memory information.

API/Interfaces/NodeMemory
hoshimi/src/types/Node.d.ts

Signature

export interface NodeMemory

Properties

4
reservableusedfreeallocated

Methods

0

No methods.

Properties

reservable#
reservable: number;

The total memory of the node.

@type{number}
used#
used: number;

The used memory of the node.

@type{number}
free#
free: number;

The free memory of the node.

@type{number}
allocated#
allocated: number;

The allocated memory of the node.

@type{number}