Interface TreeUndoHistoryDTO

The DTO for tree nodes used while exporting a tree-based history.

interface TreeUndoHistoryDTO {
    path: readonly number[];
    roots: readonly UndoableTreeNodeDTO[];
}

Properties

Properties

path: readonly number[]

The current history path in the tree

roots: readonly UndoableTreeNodeDTO[]

The different roots of the tree.

Generated using TypeDoc