ReadonlyisWhether the batch includes operations created locally (true) or operations created on other, remote editors (false).
ReadonlyisWhether the batch includes operations connected with typing.
ReadonlyisWhether the batch was created by the undo feature and undoes other operations.
ReadonlyisWhether the batch can be undone through the undo feature.
ReadonlyoperationsAn array of operations that compose this batch.
A batch instance groups model changes (module:engine/model/operation/operation~Operation operations). All operations grouped in a single batch can be reverted together, so you can also think about a batch as of a single undo step. If you want to extend a given undo step, you can add more changes to the batch using module:engine/model/model~Model#enqueueChange:
See