interface CanvasHistoryEvent {
    data: object[];
    options: object;
    type: "update" | "delete" | "create";
}

Properties

Properties

data: object[]

The data corresponding to the action which may later be un-done

options: object

The options of the undo operation

type: "update" | "delete" | "create"

The type of operation stored as history