@@ -380,10 +380,6 @@ export namespace Ace {
380
380
export type KeywordMapper = ( keyword : string ) => string ;
381
381
382
382
export interface HighlightRules {
383
- $rules : HighlightRulesMap ;
384
- $embeds ?: string [ ] ;
385
- $keywordList ?: string [ ] ;
386
- $keywords ?: KeywordMapper ;
387
383
addRules ( rules : HighlightRulesMap , prefix ?: string ) : void ;
388
384
getRules ( ) : HighlightRulesMap ;
389
385
embedRules ( rules : ( new ( ) => HighlightRules ) | HighlightRulesMap , prefix : string , escapeRules ?: boolean , append ?: boolean ) : void ;
@@ -406,7 +402,6 @@ export namespace Ace {
406
402
type BehaviorMap = Record < string , Record < string , BehaviorAction > > ;
407
403
408
404
export interface Behaviour {
409
- $behaviours : BehaviorMap ;
410
405
add ( name : string , action : string , callback : BehaviorAction ) : void ;
411
406
addBehaviours ( behaviours : BehaviorMap ) : void ;
412
407
remove ( name : string ) : void ;
@@ -417,7 +412,6 @@ export namespace Ace {
417
412
export interface Outdent {
418
413
checkOutdent ( line : string , input : string ) : boolean ;
419
414
autoOutdent ( doc : Document , row : number ) : number | undefined ;
420
- $getIndent ( line : string ) : string ;
421
415
}
422
416
423
417
export interface SyntaxMode {
0 commit comments