Interface UndoableTreeNodeDTO

The DTO interface used when exporting a tree-based history.

interface UndoableTreeNodeDTO {
    children: readonly UndoableTreeNodeDTO[];
    id: number;
    undoable: unknown;
}

Properties

Properties

children: readonly UndoableTreeNodeDTO[]

The children of the node, in their DTO format.

id: number

The unique ID of the node among the tree.

undoable: unknown

The undoable object contained in the node, in an unkown format as the format is defined by the developer while exporting the history.

Generated using TypeDoc