Skip to main content
Version: v1

Delta Interface

Differences from one forest to another.

Signature

export interface Delta<NodeId>

Type Parameters

Parameter Description
NodeId

Properties

Property Type Description
added readonly NodeId[] Nodes that were added.
changed readonly NodeId[] Nodes whose content changed.
removed readonly NodeId[] Nodes that were removed.

Property Details

added

Nodes that were added.

Signature

readonly added: readonly NodeId[];

Type: readonly NodeId[]

changed

Nodes whose content changed.

Signature

readonly changed: readonly NodeId[];

Type: readonly NodeId[]

removed

Nodes that were removed.

Signature

readonly removed: readonly NodeId[];

Type: readonly NodeId[]