EditCommittedEventArguments Interface
The arguments included when the EditCommitted SharedTreeEvent is emitted.
Signature
export interface EditCommittedEventArguments
Properties
Property | Type | Description |
---|---|---|
editId | EditId | The ID of the edit committed. |
local | boolean | Whether or not this is a local edit. |
tree | SharedTree | The tree the edit was committed on. Required for local edit events handled by SharedTreeUndoRedoHandler. |
Property Details
editId
The ID of the edit committed.
Signature
readonly editId: EditId;
Type: EditId
local
Whether or not this is a local edit.
Signature
readonly local: boolean;
Type: boolean
tree
The tree the edit was committed on. Required for local edit events handled by SharedTreeUndoRedoHandler.
Signature
readonly tree: SharedTree;
Type: SharedTree