Interface Undoable

An interface for undoable objects.

interface Undoable {
    getUndoName(): string;
    getVisualSnapshot(): UndoableSnapshot;
    redo(): void;
    undo(): void;
}

Implemented by

Methods

Generated using TypeDoc