Merge pull request #17813 from thiagolacerda/undomanager

[TinyMCE] Add ignore method to UndoManager
This commit is contained in:
Ron Buckton
2017-07-07 16:35:03 -07:00
committed by GitHub

View File

@@ -669,6 +669,8 @@ export interface UndoManager {
hasUndo(): boolean;
ignore(callback: () => void): void;
redo(): {};
transact(callback: () => void): {};