Update ace.d.ts

Add isClean and markClean methods.
Reference https://github.com/ajaxorg/ace/issues/324
This commit is contained in:
shaban
2015-06-25 01:48:44 +02:00
parent 448c3509f1
commit 39293fc55d

10
ace/ace.d.ts vendored
View File

@@ -2609,6 +2609,16 @@ declare module AceAjax {
* Returns `true` if there are redo operations left to perform.
**/
hasRedo(): boolean;
/**
* Returns `true` if the dirty counter is 0
**/
isClean(): boolean;
/**
* Sets dirty counter to 0
**/
markClean(): void;
}
var UndoManager: {