File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ export namespace Ace {
216
216
wrapBehavioursEnabled : boolean ;
217
217
enableAutoIndent : boolean ;
218
218
autoScrollEditorIntoView : boolean ;
219
- keyboardHandler : string ;
219
+ keyboardHandler : string | null ;
220
220
placeholder : string ;
221
221
value : string ;
222
222
session : EditSession ;
@@ -245,6 +245,7 @@ export namespace Ace {
245
245
off ( name : string , callback : Function ) : void ;
246
246
removeListener ( name : string , callback : Function ) : void ;
247
247
removeEventListener ( name : string , callback : Function ) : void ;
248
+ removeAllListeners ( name ?: string ) : void ;
248
249
}
249
250
250
251
export interface Point {
@@ -280,7 +281,7 @@ export namespace Ace {
280
281
}
281
282
282
283
export interface MarkerLike {
283
- range : Range ;
284
+ range ? : Range ;
284
285
type : string ;
285
286
renderer ?: MarkerRenderer ;
286
287
clazz : string ;
You can’t perform that action at this time.
0 commit comments