Interface UndoEventGroup

An undo/redo event group.

interface UndoEventGroup {
    events: readonly UndoEventWithoutAttachedState[];
    groupName?: string;
    type: Group;
}

Properties

Events that conform this group (might be single events or other nested groups).

groupName?: string

Name of the group (if any).

type: Group

Expresses this is an event group.