-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathace-ext.d.ts
643 lines (642 loc) · 25.7 KB
/
ace-ext.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
/* This file is generated using `npm run update-types` */
declare module "ace-code/src/ext/command_bar" {
/**
* Displays a command tooltip above the currently active line selection, with clickable elements.
*
* Internally it is a composite of two tooltips, one for the main tooltip and one for the
* overflowing commands.
* The commands are added sequentially in registration order.
* When attached to an editor, it is either always shown or only when the active line is hovered
* with mouse, depending on the alwaysShow property.
*/
export class CommandBarTooltip {
constructor(parentNode: HTMLElement, options?: Partial<import("ace-code").Ace.CommandBarOptions>);
parentNode: HTMLElement;
tooltip: Tooltip;
moreOptions: Tooltip;
maxElementsOnTooltip: number;
eventListeners: {};
elements: {};
commands: {};
tooltipEl: HTMLDivElement;
moreOptionsEl: HTMLDivElement;
/**
* Registers a command on the command bar tooltip.
*
* The commands are added in sequential order. If there is not enough space on the main
* toolbar, the remaining elements are added to the overflow menu.
*
*/
registerCommand(id: string, command: TooltipCommand): void;
isShown(): boolean;
isMoreOptionsShown(): boolean;
getAlwaysShow(): boolean;
/**
* Sets the display mode of the tooltip
*
* When true, the tooltip is always displayed while it is attached to an editor.
* When false, the tooltip is displayed only when the mouse hovers over the active editor line.
*
*/
setAlwaysShow(alwaysShow: boolean): void;
/**
* Attaches the clickable command bar tooltip to an editor
*
* Depending on the alwaysShow parameter it either displays the tooltip immediately,
* or subscribes to the necessary events to display the tooltip on hover.
*
*/
attach(editor: Editor): void;
editor: import("ace-code/src/editor").Editor;
/**
* Updates the position of the command bar tooltip. It aligns itself above the active line in the editor.
*/
updatePosition(): void;
/**
* Updates each command element in the tooltip.
*
* This is automatically called on certain events, but can be called manually as well.
*/
update(): void;
/**
* Detaches the tooltip from the editor.
*/
detach(): void;
destroy(): void;
}
export type Editor = import("ace-code/src/editor").Editor;
export type TooltipCommand = import("ace-code").Ace.TooltipCommand;
import { Tooltip } from "ace-code/src/tooltip";
export var TOOLTIP_CLASS_NAME: string;
export var BUTTON_CLASS_NAME: string;
namespace Ace {
type EventEmitter<T extends {
[K in keyof T]: (...args: any[]) => any;
}> = import("ace-code").Ace.EventEmitter<T>;
type CommandBarEvents = import("ace-code").Ace.CommandBarEvents;
}
export interface CommandBarTooltip extends Ace.EventEmitter<Ace.CommandBarEvents> {
}
}
declare module "ace-code/src/ext/language_tools" {
export function setCompleters(val: any): void;
export function addCompleter(completer: any): void;
import textCompleter = require("ace-code/src/autocomplete/text_completer");
export var keyWordCompleter: import("ace-code").Ace.Completer;
export var snippetCompleter: import("ace-code").Ace.Completer;
export { textCompleter };
}
declare module "ace-code/src/ext/inline_autocomplete" {
/**
* This class controls the inline-only autocompletion components and their lifecycle.
* This is more lightweight than the popup-based autocompletion, as it can only work with exact prefix matches.
* There is an inline ghost text renderer and an optional command bar tooltip inside.
*/
export class InlineAutocomplete {
constructor(editor: Editor);
editor: Editor;
keyboardHandler: HashHandler;
blurListener(e: any): void;
changeListener(e: any): void;
changeTimer: {
(timeout?: number): void;
delay(timeout?: number): void;
schedule: any;
call(): void;
cancel(): void;
isPending(): any;
};
getInlineRenderer(): AceInline;
inlineRenderer: AceInline;
getInlineTooltip(): CommandBarTooltip;
inlineTooltip: CommandBarTooltip;
/**
* This function is the entry point to the class. This triggers the gathering of the autocompletion and displaying the results;
*/
show(options: import("ace-code").Ace.CompletionOptions): void;
activated: boolean;
insertMatch(): boolean;
goTo(where: import("ace-code").Ace.InlineAutocompleteAction): void;
getLength(): any;
getData(index?: number): import("ace-code").Ace.Completion | undefined;
getIndex(): number;
isOpen(): boolean;
setIndex(value: number): void;
getCompletionProvider(initialPosition: any): CompletionProvider;
completionProvider: CompletionProvider;
updateCompletions(options?: import("ace-code").Ace.CompletionOptions): void;
base: import("ace-code/src/anchor").Anchor;
completions: FilteredList;
detach(): void;
destroy(): void;
updateDocTooltip(): void;
commands: {
[key: string]: import("ace-code").Ace.Command;
};
}
export namespace InlineAutocomplete {
function _for(editor: any): any;
export { _for as for };
export namespace startCommand {
let name: string;
function exec(editor: any, options: any): void;
export namespace bindKey {
let win: string;
let mac: string;
}
}
/**
* Factory method to create a command bar tooltip for inline autocomplete.
*
* @param {HTMLElement} parentEl The parent element where the tooltip HTML elements will be added.
* @returns {CommandBarTooltip} The command bar tooltip for inline autocomplete
*/
export function createInlineTooltip(parentEl: HTMLElement): CommandBarTooltip;
}
import { Editor } from "ace-code/src/editor";
import { HashHandler } from "ace-code/src/keyboard/hash_handler";
import { AceInline } from "ace-code/src/autocomplete/inline";
import { CommandBarTooltip } from "ace-code/src/ext/command_bar";
import { CompletionProvider } from "ace-code/src/autocomplete";
import { FilteredList } from "ace-code/src/autocomplete";
}
declare module "ace-code/src/ext/searchbox-css" {
const _exports: string;
export = _exports;
}
declare module "ace-code/src/ext/searchbox" {
export function Search(editor: Editor, isReplace?: boolean): void;
export type Editor = import("ace-code/src/editor").Editor;
export class SearchBox {
constructor(editor: Editor, range?: never, showReplaceForm?: never);
activeInput: HTMLInputElement;
element: HTMLDivElement;
setSession(e: any): void;
setEditor(editor: Editor): void;
editor: Editor;
searchRange: any;
onEditorInput(): void;
searchBox: HTMLElement;
replaceBox: HTMLElement;
searchOption: HTMLInputElement;
replaceOption: HTMLInputElement;
regExpOption: HTMLInputElement;
caseSensitiveOption: HTMLInputElement;
wholeWordOption: HTMLInputElement;
searchInput: HTMLInputElement;
replaceInput: HTMLInputElement;
searchCounter: HTMLElement;
/**
*
* @external
*/
$onChange: {
schedule: (timeout?: number) => void;
};
setSearchRange(range: any): void;
searchRangeMarker: number;
/**
* @external
*/
$syncOptions(preventScroll?: boolean): void;
highlight(re?: RegExp): void;
find(skipCurrent: boolean, backwards: boolean, preventScroll?: any): void;
updateCounter(): void;
findNext(): void;
findPrev(): void;
findAll(): void;
replace(): void;
replaceAndFindNext(): void;
replaceAll(): void;
hide(): void;
active: boolean;
show(value: string, isReplace?: boolean): void;
isFocused(): boolean;
}
import { HashHandler } from "ace-code/src/keyboard/hash_handler";
}
declare module "ace-code/src/ext/elastic_tabstops_lite" {
export class ElasticTabstopsLite {
constructor(editor: Editor);
onAfterExec: () => void;
onExec: () => void;
onChange: (delta: any) => void;
processRows(rows: number[]): void;
}
import { Editor } from "ace-code/src/editor";
}
declare module "ace-code/src/ext/error_marker" {
export function showErrorMarker(editor: import("ace-code/src/editor").Editor, dir: number): void;
}
declare module "ace-code/src/ext/beautify" {
export const singletonTags: string[];
export const blockTags: string[];
export const formatOptions: {
lineBreaksAfterCommasInCurlyBlock?: boolean;
};
export function beautify(session: import("ace-code/src/edit_session").EditSession): void;
export const commands: {
name: string;
description: string;
exec: (editor: any) => void;
bindKey: string;
}[];
}
declare module "ace-code/src/ext/code_lens" {
export function setLenses(session: EditSession, lenses: import("ace-code").Ace.CodeLense[]): number;
export function registerCodeLensProvider(editor: import("ace-code/src/editor").Editor, codeLensProvider: import("ace-code").Ace.CodeLenseProvider): void;
export function clear(session: EditSession): void;
export type EditSession = import("ace-code/src/edit_session").EditSession;
export type VirtualRenderer = import("ace-code/src/virtual_renderer").VirtualRenderer & {
};
import { Editor } from "ace-code/src/editor";
}
declare module "ace-code/src/ext/emmet" {
export const commands: HashHandler;
export function runEmmetCommand(editor: Editor): ReturnType<typeof setTimeout> | boolean;
export function updateCommands(editor: Editor, enabled?: boolean): void;
export function isSupportedMode(mode: any): boolean;
export function isAvailable(editor: Editor, command: string): boolean;
export function load(cb: any): boolean;
export function setCore(e: any): void;
import { HashHandler } from "ace-code/src/keyboard/hash_handler";
import { Editor } from "ace-code/src/editor";
/**
* Implementation of {@link IEmmetEditor} interface for Ace
*/
export class AceEmmetEditor {
setupContext(editor: Editor): void;
ace: Editor;
indentation: string;
/**
* Returns character indexes of selected text: object with <code>start</code>
* and <code>end</code> properties. If there's no selection, should return
* object with <code>start</code> and <code>end</code> properties referring
* to current caret position
* @example
* var selection = editor.getSelectionRange();
* alert(selection.start + ', ' + selection.end);
*/
getSelectionRange(): any;
/**
* Creates selection from <code>start</code> to <code>end</code> character
* indexes. If <code>end</code> is ommited, this method should place caret
* and <code>start</code> index
* @example
* editor.createSelection(10, 40);
*
* //move caret to 15th character
* editor.createSelection(15);
*/
createSelection(start: number, end?: number): void;
/**
* Returns current line's start and end indexes as object with <code>start</code>
* and <code>end</code> properties
* @example
* var range = editor.getCurrentLineRange();
* alert(range.start + ', ' + range.end);
*/
getCurrentLineRange(): any;
/**
* Returns current caret position
*/
getCaretPos(): number | null;
/**
* Set new caret position
* @param {Number} index Caret position
*/
setCaretPos(index: number): void;
/**
* Returns content of current line
*/
getCurrentLine(): string;
/**
* Replace editor's content or it's part (from <code>start</code> to
* <code>end</code> index). If <code>value</code> contains
* <code>caret_placeholder</code>, the editor will put caret into
* this position. If you skip <code>start</code> and <code>end</code>
* arguments, the whole target's content will be replaced with
* <code>value</code>.
*
* If you pass <code>start</code> argument only,
* the <code>value</code> will be placed at <code>start</code> string
* index of current content.
*
* If you pass <code>start</code> and <code>end</code> arguments,
* the corresponding substring of current target's content will be
* replaced with <code>value</code>.
* @param {String} value Content you want to paste
* @param {Number} [start] Start index of editor's content
* @param {Number} [end] End index of editor's content
* @param {Boolean} [noIndent] Do not auto indent <code>value</code>
*/
replaceContent(value: string, start?: number, end?: number, noIndent?: boolean): void;
/**
* Returns editor's content
*/
getContent(): string;
/**
* Returns current editor's syntax mode
*/
getSyntax(): string;
/**
* Returns current output profile name (@see emmet#setupProfile)
*/
getProfileName(): string;
/**
* Ask user to enter something
* @param {String} title Dialog title
* @return {String} Entered data
* @since 0.65
*/
prompt(title: string): string;
/**
* Returns current selection
* @since 0.65
*/
getSelection(): string;
/**
* Returns current editor's file path
* @since 0.65
*/
getFilePath(): string;
}
}
declare module "ace-code/src/ext/hardwrap" {
export function hardWrap(editor: import("ace-code/src/editor").Editor, options: import("ace-code").Ace.HardWrapOptions): void;
import { Editor } from "ace-code/src/editor";
}
declare module "ace-code/src/ext/menu_tools/settings_menu.css" {
const _exports: string;
export = _exports;
}
declare module "ace-code/src/ext/menu_tools/overlay_page" {
export function overlayPage(editor: any, contentElement: HTMLElement, callback?: any): {
close: () => void;
setIgnoreFocusOut: (ignore: boolean) => void;
};
}
declare module "ace-code/src/ext/menu_tools/get_editor_keyboard_shortcuts" {
export function getEditorKeybordShortcuts(editor: import("ace-code/src/editor").Editor): any[];
}
declare module "ace-code/src/ext/keybinding_menu" {
export function init(editor: Editor): void;
import { Editor } from "ace-code/src/editor";
}
declare module "ace-code/src/ext/linking" { }
declare module "ace-code/src/ext/modelist" {
/**
* Suggests a mode based on the file extension present in the given path
* @param {string} path The path to the file
* @returns {Mode} Returns an object containing information about the
* suggested mode.
*/
export function getModeForPath(path: string): Mode;
export var modes: Mode[];
export var modesByName: Record<string, Mode>;
class Mode {
constructor(name: string, caption: string, extensions: string);
name: string;
caption: string;
mode: string;
extensions: string;
extRe: RegExp;
supportsFile(filename: string): RegExpMatchArray | null;
}
}
declare module "ace-code/src/ext/themelist" {
export const themesByName: {
[x: string]: Theme;
};
export const themes: Theme[];
export type Theme = {
/**
* - The display caption of the theme.
*/
caption: string;
/**
* - The path or identifier for the ACE theme.
*/
theme: string;
/**
* - Indicates whether the theme is dark or light.
*/
isDark: boolean;
/**
* - The normalized name used as the key.
*/
name: string;
};
}
declare module "ace-code/src/ext/options" {
export class OptionPanel {
constructor(editor: Editor, element?: HTMLElement);
editor: import("ace-code/src/editor").Editor;
container: HTMLElement;
groups: any[];
options: {};
add(config: any): void;
render(): void;
renderOptionGroup(group: any): any[];
renderOptionControl(key: string, option: any): any;
renderOption(key: any, option: any): (string | any[] | {
class: string;
})[];
setOption(option: string | number | any, value: string | number | boolean): void;
getOption(option: any): any;
}
export type Editor = import("ace-code/src/editor").Editor;
namespace Ace {
type EventEmitter<T extends {
[K in keyof T]: (...args: any[]) => any;
}> = import("ace-code").Ace.EventEmitter<T>;
type OptionPanelEvents = import("ace-code").Ace.OptionPanelEvents;
}
export interface OptionPanel extends Ace.EventEmitter<Ace.OptionPanelEvents> {
}
}
declare module "ace-code/src/ext/prompt" {
export type PromptOptions = {
/**
* Prompt name.
*/
name: string;
/**
* Defines which part of the predefined value should be highlighted.
*/
selection: [
number,
number
];
/**
* Set to true if prompt has description below input box.
*/
hasDescription: boolean;
/**
* Description below input box.
*/
prompt: string;
/**
* Placeholder for value.
*/
placeholder: string;
/**
* Set to true to keep the prompt open when focus moves to another part of the editor.
*/
ignoreFocusOut: boolean;
/**
* Function for defining list of options for value.
*/
getCompletions: Function;
/**
* Function for defining current value prefix.
*/
getPrefix: Function;
/**
* Function called when Enter is pressed.
*/
onAccept: Function;
/**
* Function called when input is added to prompt input box.
*/
onInput: Function;
/**
* Function called when Esc|Shift-Esc is pressed.
*/
onCancel: Function;
/**
* Function for defining history list.
*/
history: Function;
maxHistoryCount: number;
addToHistory: Function;
};
export type Editor = import("ace-code/src/editor").Editor;
/**
* @property {String} name Prompt name.
* @property {String} $type Use prompt of specific type (gotoLine|commands|modes or default if empty).
* @property {[number, number]} selection Defines which part of the predefined value should be highlighted.
* @property {Boolean} hasDescription Set to true if prompt has description below input box.
* @property {String} prompt Description below input box.
* @property {String} placeholder Placeholder for value.
* @property {Object} $rules Specific rules for input like password or regexp.
* @property {Boolean} ignoreFocusOut Set to true to keep the prompt open when focus moves to another part of the editor.
* @property {Function} getCompletions Function for defining list of options for value.
* @property {Function} getPrefix Function for defining current value prefix.
* @property {Function} onAccept Function called when Enter is pressed.
* @property {Function} onInput Function called when input is added to prompt input box.
* @property {Function} onCancel Function called when Esc|Shift-Esc is pressed.
* @property {Function} history Function for defining history list.
* @property {number} maxHistoryCount
* @property {Function} addToHistory
*/
/**
* Prompt plugin is used for getting input from user.
*
* @param {Editor} editor Ouside editor related to this prompt. Will be blurred when prompt is open.
* @param {String | Partial<PromptOptions>} message Predefined value of prompt input box.
* @param {Partial<PromptOptions>} options Cusomizable options for this prompt.
* @param {Function} [callback] Function called after done.
* */
export function prompt(editor: Editor, message: string | Partial<PromptOptions>, options: Partial<PromptOptions>, callback?: Function): any;
export namespace prompt {
function gotoLine(editor: Editor, callback?: Function): void;
function commands(editor: Editor, callback?: Function): void;
function modes(editor: Editor, callback?: Function): void;
}
}
declare module "ace-code/src/ext/rtl" {
}
declare module "ace-code/src/ext/settings_menu" {
export function init(): void;
}
declare module "ace-code/src/ext/simple_tokenizer" {
/**
* Parses provided content according to provided highlighting rules and return tokens.
* Tokens either have the className set according to Ace themes or have no className if they are just pure text tokens.
* Result is a list of list of tokens, where each line from the provided content is a separate list of tokens.
*
* @param {string} content to tokenize
* @param {import("ace-code").Ace.HighlightRules} highlightRules defining the language grammar
* @returns {import("ace-code").Ace.TokenizeResult} tokenization result containing a list of token for each of the lines from content
*/
export function tokenize(content: string, highlightRules: import("ace-code").Ace.HighlightRules): import("ace-code").Ace.TokenizeResult;
}
declare module "ace-code/src/ext/spellcheck" {
export function contextMenuHandler(e: any): void;
}
declare module "ace-code/src/ext/split" {
const _exports: typeof import("ace-code/src/split");
export = _exports;
}
declare module "ace-code/src/ext/static-css" {
const _exports: string;
export = _exports;
}
declare module "ace-code/src/ext/static_highlight" {
function highlight(el: HTMLElement, opts: import("ace-code").Ace.StaticHighlightOptions, callback?: any): boolean;
export namespace highlight {
export { render, renderSync, highlight, SyntaxMode, Theme };
}
/**
* Transforms a given input code snippet into HTML using the given mode
*
* @param {string} input Code snippet
* @param {string | SyntaxMode} mode String specifying the mode to load such as
* `ace/mode/javascript` or, a mode loaded from `/ace/mode`
* (use 'ServerSideHiglighter.getMode').
* @param {string | Theme} theme String specifying the theme to load such as
* `ace/theme/twilight` or, a theme loaded from `/ace/theme`.
* @param {number} lineStart A number indicating the first line number. Defaults
* to 1.
* @param {boolean} disableGutter Specifies whether or not to disable the gutter.
* `true` disables the gutter, `false` enables the gutter. Defaults to `false`.
* @param {function} [callback] When specifying the mode or theme as a string,
* this method has no return value and you must specify a callback function. The
* callback will receive the rendered object containing the properties `html`
* and `css`.
* @returns {object} An object containing the properties `html` and `css`.
*/
function render(input: string, mode: string | SyntaxMode, theme: string | Theme, lineStart: number, disableGutter: boolean, callback?: Function): object;
/**
* Transforms a given input code snippet into HTML using the given mode
* @param {string} input Code snippet
* @param {SyntaxMode | string} mode Mode loaded from /ace/mode (use 'ServerSideHiglighter.getMode')
* @returns {object} An object containing: html, css
*/
function renderSync(input: string, mode: SyntaxMode | string, theme: Theme, lineStart: any, disableGutter: boolean): object;
type SyntaxMode = import("ace-code").Ace.SyntaxMode;
type Theme = import("ace-code").Ace.Theme;
}
declare module "ace-code/src/ext/statusbar" {
export type Editor = import("ace-code/src/editor").Editor;
/** simple statusbar **/
export class StatusBar {
constructor(editor: Editor, parentNode: HTMLElement);
element: HTMLDivElement;
updateStatus(editor: Editor): void;
}
}
declare module "ace-code/src/ext/whitespace" {
export function $detectIndentation(lines: string[], fallback?: any): {
ch?: string;
length?: number;
};
export function detectIndentation(session: EditSession): {
ch?: string;
length?: number;
} | {};
export function trimTrailingSpace(session: EditSession, options: {
trimEmpty?: boolean;
keepCursorPosition?: boolean;
}): void;
export function convertIndentation(session: EditSession, ch: string, len: number): void;
export function $parseStringArg(text: string): {};
export function $parseArg(arg: any): any;
export const commands: {
name: string;
description: string;
exec: (editor: any, args: any) => void;
}[];
export type EditSession = import("ace-code/src/edit_session").EditSession;
}