acode-plugin-types 1.11.7-patch.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/README.md +8 -0
  2. package/index.d.ts +91 -0
  3. package/package.json +26 -0
  4. package/src/ace/index.d.ts +1 -0
  5. package/src/ace/modelist.d.ts +22 -0
  6. package/src/acode.d.ts +437 -0
  7. package/src/components/collapsibleList.d.ts +11 -0
  8. package/src/components/contextMenu.d.ts +66 -0
  9. package/src/components/index.d.ts +10 -0
  10. package/src/components/inputhints.d.ts +45 -0
  11. package/src/components/page.d.ts +22 -0
  12. package/src/components/palette.d.ts +21 -0
  13. package/src/components/sideButton.d.ts +35 -0
  14. package/src/components/terminal/index.d.ts +1 -0
  15. package/src/components/terminal/terminalManager.d.ts +113 -0
  16. package/src/components/toast.d.ts +20 -0
  17. package/src/components/tutorial.d.ts +13 -0
  18. package/src/components/webComponents/index.d.ts +1 -0
  19. package/src/components/webComponents/wcPage.d.ts +85 -0
  20. package/src/dialogs/alert.d.ts +15 -0
  21. package/src/dialogs/box.d.ts +45 -0
  22. package/src/dialogs/color.d.ts +15 -0
  23. package/src/dialogs/confirm.d.ts +16 -0
  24. package/src/dialogs/index.d.ts +8 -0
  25. package/src/dialogs/loader.d.ts +44 -0
  26. package/src/dialogs/multiPrompt.d.ts +16 -0
  27. package/src/dialogs/prompt.d.ts +47 -0
  28. package/src/dialogs/select.d.ts +66 -0
  29. package/src/fileSystem.d.ts +113 -0
  30. package/src/handlers/index.d.ts +3 -0
  31. package/src/handlers/intent.d.ts +47 -0
  32. package/src/handlers/keyboard.d.ts +30 -0
  33. package/src/handlers/windowResize.d.ts +13 -0
  34. package/src/index.d.ts +12 -0
  35. package/src/lib/actionStack.d.ts +60 -0
  36. package/src/lib/editorFile.d.ts +344 -0
  37. package/src/lib/editorManager.d.ts +127 -0
  38. package/src/lib/fileList.d.ts +70 -0
  39. package/src/lib/fonts.d.ts +29 -0
  40. package/src/lib/index.d.ts +9 -0
  41. package/src/lib/openFolder.d.ts +102 -0
  42. package/src/lib/projects.d.ts +28 -0
  43. package/src/lib/selectionMenu.d.ts +19 -0
  44. package/src/lib/settings.d.ts +155 -0
  45. package/src/pages/fileBrowser/fileBrowser.d.ts +65 -0
  46. package/src/pages/fileBrowser/index.d.ts +1 -0
  47. package/src/pages/index.d.ts +1 -0
  48. package/src/plugins/customtabs/CustomTabs.d.ts +57 -0
  49. package/src/plugins/customtabs/index.d.ts +1 -0
  50. package/src/plugins/index.d.ts +4 -0
  51. package/src/plugins/system/System.d.ts +550 -0
  52. package/src/plugins/system/index.d.ts +1 -0
  53. package/src/plugins/terminal/Executor.d.ts +155 -0
  54. package/src/plugins/terminal/Terminal.d.ts +123 -0
  55. package/src/plugins/terminal/index.d.ts +2 -0
  56. package/src/plugins/websocket/WebSocket.d.ts +224 -0
  57. package/src/plugins/websocket/index.d.ts +1 -0
  58. package/src/sideBarApps.d.ts +39 -0
  59. package/src/test.ts +517 -0
  60. package/src/theme/builder.d.ts +188 -0
  61. package/src/theme/index.d.ts +2 -0
  62. package/src/theme/list.d.ts +29 -0
  63. package/src/utils/KeyboardEvent.d.ts +19 -0
  64. package/src/utils/Url.d.ts +65 -0
  65. package/src/utils/color.d.ts +51 -0
  66. package/src/utils/encodings.d.ts +24 -0
  67. package/src/utils/helpers.d.ts +102 -0
  68. package/src/utils/index.d.ts +5 -0
  69. package/types/ace/VERSION +1 -0
  70. package/types/ace/ace-modes.d.ts +1724 -0
  71. package/types/ace/index.d.ts +1176 -0
  72. package/types/ace/types/ace-ext.d.ts +720 -0
  73. package/types/ace/types/ace-lib.d.ts +302 -0
  74. package/types/ace/types/ace-modules.d.ts +5293 -0
  75. package/types/ace/types/ace-snippets.d.ts +406 -0
  76. package/types/ace/types/ace-theme.d.ts +437 -0
  77. package/types/html-tag-js.d.ts +680 -0
  78. package/types/require.d.ts +412 -0
  79. package/types/xterm.d.ts +1908 -0
@@ -0,0 +1,1724 @@
1
+ declare module "ace/mode/abap_highlight_rules" {
2
+ export const AbapHighlightRules: new () => Ace.HighlightRules;
3
+ }
4
+
5
+ declare module "ace/mode/abap" {
6
+ export const Mode: new () => Ace.SyntaxMode;
7
+ }
8
+
9
+ declare module "ace/mode/abc_highlight_rules" {
10
+ export const ABCHighlightRules: new () => Ace.HighlightRules;
11
+ }
12
+
13
+ declare module "ace/mode/abc" {
14
+ export const Mode: new () => Ace.SyntaxMode;
15
+ }
16
+
17
+ declare module "ace/mode/actionscript_highlight_rules" {
18
+ export const ActionScriptHighlightRules: new () => Ace.HighlightRules;
19
+ }
20
+
21
+ declare module "ace/mode/actionscript" {
22
+ export const Mode: new () => Ace.SyntaxMode;
23
+ }
24
+
25
+ declare module "ace/mode/ada_highlight_rules" {
26
+ export const AdaHighlightRules: new () => Ace.HighlightRules;
27
+ }
28
+
29
+ declare module "ace/mode/ada" {
30
+ export const Mode: new () => Ace.SyntaxMode;
31
+ }
32
+
33
+ declare module "ace/mode/alda_highlight_rules" {
34
+ export const AldaHighlightRules: new () => Ace.HighlightRules;
35
+ }
36
+
37
+ declare module "ace/mode/alda" {
38
+ export const Mode: new () => Ace.SyntaxMode;
39
+ }
40
+
41
+ declare module "ace/mode/apache_conf_highlight_rules" {
42
+ export const ApacheConfHighlightRules: new () => Ace.HighlightRules;
43
+ }
44
+
45
+ declare module "ace/mode/apache_conf" {
46
+ export const Mode: new () => Ace.SyntaxMode;
47
+ }
48
+
49
+ declare module "ace/mode/apex_highlight_rules" {
50
+ export const ApexHighlightRules: new () => Ace.HighlightRules;
51
+ }
52
+
53
+ declare module "ace/mode/apex" {
54
+ export const Mode: new () => Ace.SyntaxMode;
55
+ }
56
+
57
+ declare module "ace/mode/applescript_highlight_rules" {
58
+ export const AppleScriptHighlightRules: new () => Ace.HighlightRules;
59
+ }
60
+
61
+ declare module "ace/mode/applescript" {
62
+ export const Mode: new () => Ace.SyntaxMode;
63
+ }
64
+
65
+ declare module "ace/mode/aql_highlight_rules" {
66
+ export const AqlHighlightRules: new () => Ace.HighlightRules;
67
+ }
68
+
69
+ declare module "ace/mode/aql" {
70
+ export const Mode: new () => Ace.SyntaxMode;
71
+ }
72
+
73
+ declare module "ace/mode/asciidoc_highlight_rules" {
74
+ export const AsciidocHighlightRules: new () => Ace.HighlightRules;
75
+ }
76
+
77
+ declare module "ace/mode/asciidoc" {
78
+ export const Mode: new () => Ace.SyntaxMode;
79
+ }
80
+
81
+ declare module "ace/mode/asl_highlight_rules" {
82
+ export const ASLHighlightRules: new () => Ace.HighlightRules;
83
+ }
84
+
85
+ declare module "ace/mode/asl" {
86
+ export const Mode: new () => Ace.SyntaxMode;
87
+ }
88
+
89
+ declare module "ace/mode/assembly_arm32_highlight_rules" {
90
+ export const AssemblyARM32HighlightRules: new () => Ace.HighlightRules;
91
+ }
92
+
93
+ declare module "ace/mode/assembly_arm32" {
94
+ export const Mode: new () => Ace.SyntaxMode;
95
+ }
96
+
97
+ declare module "ace/mode/assembly_x86_highlight_rules" {
98
+ export const AssemblyX86HighlightRules: new () => Ace.HighlightRules;
99
+ }
100
+
101
+ declare module "ace/mode/assembly_x86" {
102
+ export const Mode: new () => Ace.SyntaxMode;
103
+ }
104
+
105
+ declare module "ace/mode/astro_highlight_rules" {
106
+ export const AstroHighlightRules: new () => Ace.HighlightRules;
107
+ }
108
+
109
+ declare module "ace/mode/astro" {
110
+ export const Mode: new () => Ace.SyntaxMode;
111
+ }
112
+
113
+ declare module "ace/mode/autohotkey_highlight_rules" {
114
+ export const AutoHotKeyHighlightRules: new () => Ace.HighlightRules;
115
+ }
116
+
117
+ declare module "ace/mode/autohotkey" {
118
+ export const Mode: new () => Ace.SyntaxMode;
119
+ }
120
+
121
+ declare module "ace/mode/basic_highlight_rules" {
122
+ export const BasicHighlightRules: new () => Ace.HighlightRules;
123
+ }
124
+
125
+ declare module "ace/mode/basic" {
126
+ export const Mode: new () => Ace.SyntaxMode;
127
+ }
128
+
129
+ declare module "ace/mode/batchfile_highlight_rules" {
130
+ export const BatchFileHighlightRules: new () => Ace.HighlightRules;
131
+ }
132
+
133
+ declare module "ace/mode/batchfile" {
134
+ export const Mode: new () => Ace.SyntaxMode;
135
+ }
136
+
137
+ declare module "ace/mode/behaviour" {
138
+ export const Behaviour: new () => Ace.Behaviour;
139
+ }
140
+
141
+ declare module "ace/mode/behaviour/css" {
142
+ export const CssBehaviour: new () => Ace.Behaviour;
143
+ }
144
+
145
+ declare module "ace/mode/behaviour/cstyle" {
146
+ export const CstyleBehaviour: new () => Ace.Behaviour;
147
+ }
148
+
149
+ declare module "ace/mode/behaviour/html" {
150
+ export const HtmlBehaviour: new () => Ace.Behaviour;
151
+ }
152
+
153
+ declare module "ace/mode/behaviour/javascript" {
154
+ export const JavaScriptBehaviour: new () => Ace.Behaviour;
155
+ }
156
+
157
+ declare module "ace/mode/behaviour/liquid" {
158
+ export const LiquidBehaviour: new () => Ace.Behaviour;
159
+ }
160
+
161
+ declare module "ace/mode/behaviour/xml" {
162
+ export const XmlBehaviour: new () => Ace.Behaviour;
163
+ }
164
+
165
+ declare module "ace/mode/behaviour/xquery" {
166
+ export const XQueryBehaviour: new () => Ace.Behaviour;
167
+ }
168
+
169
+ declare module "ace/mode/bibtex_highlight_rules" {
170
+ export const BibTeXHighlightRules: new () => Ace.HighlightRules;
171
+ }
172
+
173
+ declare module "ace/mode/bibtex" {
174
+ export const Mode: new () => Ace.SyntaxMode;
175
+ }
176
+
177
+ declare module "ace/mode/c_cpp_highlight_rules" {
178
+ export const cFunctions: string;
179
+ export const c_cppHighlightRules: new () => Ace.HighlightRules;
180
+ }
181
+
182
+ declare module "ace/mode/c_cpp" {
183
+ export const Mode: new () => Ace.SyntaxMode;
184
+ }
185
+
186
+ declare module "ace/mode/c9search_highlight_rules" {
187
+ export const C9SearchHighlightRules: new () => Ace.HighlightRules;
188
+ }
189
+
190
+ declare module "ace/mode/c9search" {
191
+ export const Mode: new () => Ace.SyntaxMode;
192
+ }
193
+
194
+ declare module "ace/mode/cirru_highlight_rules" {
195
+ export const CirruHighlightRules: new () => Ace.HighlightRules;
196
+ }
197
+
198
+ declare module "ace/mode/cirru" {
199
+ export const Mode: new () => Ace.SyntaxMode;
200
+ }
201
+
202
+ declare module "ace/mode/clojure_highlight_rules" {
203
+ export const ClojureHighlightRules: new () => Ace.HighlightRules;
204
+ }
205
+
206
+ declare module "ace/mode/clojure" {
207
+ export const Mode: new () => Ace.SyntaxMode;
208
+ }
209
+
210
+ declare module "ace/mode/cobol_highlight_rules" {
211
+ export const CobolHighlightRules: new () => Ace.HighlightRules;
212
+ }
213
+
214
+ declare module "ace/mode/cobol" {
215
+ export const Mode: new () => Ace.SyntaxMode;
216
+ }
217
+
218
+ declare module "ace/mode/coffee_highlight_rules" {
219
+ export const CoffeeHighlightRules: new () => Ace.HighlightRules;
220
+ }
221
+
222
+ declare module "ace/mode/coffee" {
223
+ export const Mode: new () => Ace.SyntaxMode;
224
+ }
225
+
226
+ declare module "ace/mode/coldfusion_highlight_rules" {
227
+ export const ColdfusionHighlightRules: new () => Ace.HighlightRules;
228
+ }
229
+
230
+ declare module "ace/mode/coldfusion" {
231
+ export const Mode: new () => Ace.SyntaxMode;
232
+ }
233
+
234
+ declare module "ace/mode/crystal_highlight_rules" {
235
+ export const CrystalHighlightRules: new () => Ace.HighlightRules;
236
+ }
237
+
238
+ declare module "ace/mode/crystal" {
239
+ export const Mode: new () => Ace.SyntaxMode;
240
+ }
241
+
242
+ declare module "ace/mode/csharp_highlight_rules" {
243
+ export const CSharpHighlightRules: new () => Ace.HighlightRules;
244
+ }
245
+
246
+ declare module "ace/mode/csharp" {
247
+ export const Mode: new () => Ace.SyntaxMode;
248
+ }
249
+
250
+ declare module "ace/mode/csound_document_highlight_rules" {
251
+ export const CsoundDocumentHighlightRules: new () => Ace.HighlightRules;
252
+ }
253
+
254
+ declare module "ace/mode/csound_document" {
255
+ export const Mode: new () => Ace.SyntaxMode;
256
+ }
257
+
258
+ declare module "ace/mode/csound_orchestra_highlight_rules" {
259
+ export const CsoundOrchestraHighlightRules: new () => Ace.HighlightRules;
260
+ }
261
+
262
+ declare module "ace/mode/csound_orchestra" {
263
+ export const Mode: new () => Ace.SyntaxMode;
264
+ }
265
+
266
+ declare module "ace/mode/csound_preprocessor_highlight_rules" {
267
+ export const CsoundPreprocessorHighlightRules: new () => Ace.HighlightRules;
268
+ }
269
+
270
+ declare module "ace/mode/csound_score_highlight_rules" {
271
+ export const CsoundScoreHighlightRules: new () => Ace.HighlightRules;
272
+ }
273
+
274
+ declare module "ace/mode/csound_score" {
275
+ export const Mode: new () => Ace.SyntaxMode;
276
+ }
277
+
278
+ declare module "ace/mode/csp_highlight_rules" {
279
+ export const CspHighlightRules: new () => Ace.HighlightRules;
280
+ }
281
+
282
+ declare module "ace/mode/csp" {
283
+ export const Mode: new () => Ace.SyntaxMode;
284
+ }
285
+
286
+ declare module "ace/mode/css_completions" {
287
+ export const CssCompletions: new () => Ace.Completion;
288
+ }
289
+
290
+ declare module "ace/mode/css_highlight_rules" {
291
+ export const supportType: string;
292
+ export const supportFunction: string;
293
+ export const supportConstant: string;
294
+ export const supportConstantColor: string;
295
+ export const supportConstantFonts: string;
296
+ export const numRe: string;
297
+ export const pseudoElements: string;
298
+ export const pseudoClasses: string;
299
+ export const CssHighlightRules: new () => Ace.HighlightRules;
300
+ }
301
+
302
+ declare module "ace/mode/css" {
303
+ export const Mode: new () => Ace.SyntaxMode;
304
+ }
305
+
306
+ declare module "ace/mode/csv_highlight_rules" {
307
+ export const CsvHighlightRules: new () => Ace.HighlightRules;
308
+ }
309
+
310
+ declare module "ace/mode/csv" {
311
+ export const Mode: new () => Ace.SyntaxMode;
312
+ }
313
+
314
+ declare module "ace/mode/curly_highlight_rules" {
315
+ export const CurlyHighlightRules: new () => Ace.HighlightRules;
316
+ }
317
+
318
+ declare module "ace/mode/curly" {
319
+ export const Mode: new () => Ace.SyntaxMode;
320
+ }
321
+
322
+ declare module "ace/mode/cuttlefish_highlight_rules" {
323
+ export const CuttlefishHighlightRules: new () => Ace.HighlightRules;
324
+ }
325
+
326
+ declare module "ace/mode/cuttlefish" {
327
+ export const Mode: new () => Ace.SyntaxMode;
328
+ }
329
+
330
+ declare module "ace/mode/d_highlight_rules" {
331
+ export const DHighlightRules: new () => Ace.HighlightRules;
332
+ }
333
+
334
+ declare module "ace/mode/d" {
335
+ export const Mode: new () => Ace.SyntaxMode;
336
+ }
337
+
338
+ declare module "ace/mode/dart_highlight_rules" {
339
+ export const DartHighlightRules: new () => Ace.HighlightRules;
340
+ }
341
+
342
+ declare module "ace/mode/dart" {
343
+ export const Mode: new () => Ace.SyntaxMode;
344
+ }
345
+
346
+ declare module "ace/mode/diff_highlight_rules" {
347
+ export const DiffHighlightRules: new () => Ace.HighlightRules;
348
+ }
349
+
350
+ declare module "ace/mode/diff" {
351
+ export const Mode: new () => Ace.SyntaxMode;
352
+ }
353
+
354
+ declare module "ace/mode/django" {
355
+ export const Mode: new () => Ace.SyntaxMode;
356
+ }
357
+
358
+ declare module "ace/mode/doc_comment_highlight_rules" {
359
+ export const DocCommentHighlightRules: new () => Ace.HighlightRules;
360
+ }
361
+
362
+ declare module "ace/mode/dockerfile_highlight_rules" {
363
+ export const DockerfileHighlightRules: new () => Ace.HighlightRules;
364
+ }
365
+
366
+ declare module "ace/mode/dockerfile" {
367
+ export const Mode: new () => Ace.SyntaxMode;
368
+ }
369
+
370
+ declare module "ace/mode/dot_highlight_rules" {
371
+ export const DotHighlightRules: new () => Ace.HighlightRules;
372
+ }
373
+
374
+ declare module "ace/mode/dot" {
375
+ export const Mode: new () => Ace.SyntaxMode;
376
+ }
377
+
378
+ declare module "ace/mode/drools_highlight_rules" {
379
+ export const DroolsHighlightRules: new () => Ace.HighlightRules;
380
+ }
381
+
382
+ declare module "ace/mode/drools" {
383
+ export const Mode: new () => Ace.SyntaxMode;
384
+ }
385
+
386
+ declare module "ace/mode/edifact_highlight_rules" {
387
+ export const EdifactHighlightRules: new () => Ace.HighlightRules;
388
+ }
389
+
390
+ declare module "ace/mode/edifact" {
391
+ export const Mode: new () => Ace.SyntaxMode;
392
+ }
393
+
394
+ declare module "ace/mode/eiffel_highlight_rules" {
395
+ export const EiffelHighlightRules: new () => Ace.HighlightRules;
396
+ }
397
+
398
+ declare module "ace/mode/eiffel" {
399
+ export const Mode: new () => Ace.SyntaxMode;
400
+ }
401
+
402
+ declare module "ace/mode/ejs" {
403
+ export const EjsHighlightRules: new () => Ace.HighlightRules;
404
+ export const Mode: new () => Ace.SyntaxMode;
405
+ }
406
+
407
+ declare module "ace/mode/elixir_highlight_rules" {
408
+ export const ElixirHighlightRules: new () => Ace.HighlightRules;
409
+ }
410
+
411
+ declare module "ace/mode/elixir" {
412
+ export const Mode: new () => Ace.SyntaxMode;
413
+ }
414
+
415
+ declare module "ace/mode/elm_highlight_rules" {
416
+ export const ElmHighlightRules: new () => Ace.HighlightRules;
417
+ }
418
+
419
+ declare module "ace/mode/elm" {
420
+ export const Mode: new () => Ace.SyntaxMode;
421
+ }
422
+
423
+ declare module "ace/mode/erlang_highlight_rules" {
424
+ export const ErlangHighlightRules: new () => Ace.HighlightRules;
425
+ }
426
+
427
+ declare module "ace/mode/erlang" {
428
+ export const Mode: new () => Ace.SyntaxMode;
429
+ }
430
+
431
+ declare module "ace/mode/flix_highlight_rules" {
432
+ export const FlixHighlightRules: new () => Ace.HighlightRules;
433
+ }
434
+
435
+ declare module "ace/mode/flix" {
436
+ export const Mode: new () => Ace.SyntaxMode;
437
+ }
438
+
439
+ declare module "ace/mode/folding/asciidoc" {
440
+ export const FoldMode: new () => Ace.Folding;
441
+ }
442
+
443
+ declare module "ace/mode/folding/basic" {
444
+ export const FoldMode: new () => Ace.Folding;
445
+ }
446
+
447
+ declare module "ace/mode/folding/c9search" {
448
+ export const FoldMode: new () => Ace.Folding;
449
+ }
450
+
451
+ declare module "ace/mode/folding/coffee" {
452
+ export const FoldMode: new () => Ace.Folding;
453
+ }
454
+
455
+ declare module "ace/mode/folding/csharp" {
456
+ export const FoldMode: new () => Ace.Folding;
457
+ }
458
+
459
+ declare module "ace/mode/folding/cstyle" {
460
+ export const FoldMode: new () => Ace.Folding;
461
+ }
462
+
463
+ declare module "ace/mode/folding/diff" {
464
+ export const FoldMode: new () => Ace.Folding;
465
+ }
466
+
467
+ declare module "ace/mode/folding/drools" {
468
+ export const FoldMode: new () => Ace.Folding;
469
+ }
470
+
471
+ declare module "ace/mode/folding/fold_mode" {
472
+ export const FoldMode: new () => Ace.Folding;
473
+ }
474
+
475
+ declare module "ace/mode/folding/haskell_cabal" {
476
+ export const FoldMode: new () => Ace.Folding;
477
+ }
478
+
479
+ declare module "ace/mode/folding/html" {
480
+ export const FoldMode: new () => Ace.Folding;
481
+ }
482
+
483
+ declare module "ace/mode/folding/ini" {
484
+ export const FoldMode: new () => Ace.Folding;
485
+ }
486
+
487
+ declare module "ace/mode/folding/java" {
488
+ export const FoldMode: new () => Ace.Folding;
489
+ }
490
+
491
+ declare module "ace/mode/folding/javascript" {
492
+ export const FoldMode: new () => Ace.Folding;
493
+ }
494
+
495
+ declare module "ace/mode/folding/latex" {
496
+ export const FoldMode: new () => Ace.Folding;
497
+ }
498
+
499
+ declare module "ace/mode/folding/lua" {
500
+ export const FoldMode: new () => Ace.Folding;
501
+ }
502
+
503
+ declare module "ace/mode/folding/markdown" {
504
+ export const FoldMode: new () => Ace.Folding;
505
+ }
506
+
507
+ declare module "ace/mode/folding/mixed" {
508
+ export const FoldMode: new () => Ace.Folding;
509
+ }
510
+
511
+ declare module "ace/mode/folding/php" {
512
+ export const FoldMode: new () => Ace.Folding;
513
+ }
514
+
515
+ declare module "ace/mode/folding/pythonic" {
516
+ export const FoldMode: new () => Ace.Folding;
517
+ }
518
+
519
+ declare module "ace/mode/folding/ruby" {
520
+ export const FoldMode: new () => Ace.Folding;
521
+ }
522
+
523
+ declare module "ace/mode/folding/sql" {
524
+ export const FoldMode: new () => Ace.Folding;
525
+ }
526
+
527
+ declare module "ace/mode/folding/sqlserver" {
528
+ export const FoldMode: new () => Ace.Folding;
529
+ }
530
+
531
+ declare module "ace/mode/folding/vbscript" {
532
+ export const FoldMode: new () => Ace.Folding;
533
+ }
534
+
535
+ declare module "ace/mode/folding/velocity" {
536
+ export const FoldMode: new () => Ace.Folding;
537
+ }
538
+
539
+ declare module "ace/mode/folding/xml" {
540
+ export const FoldMode: new () => Ace.Folding;
541
+ }
542
+
543
+ declare module "ace/mode/folding/yaml" {
544
+ export const FoldMode: new () => Ace.Folding;
545
+ }
546
+
547
+ declare module "ace/mode/forth_highlight_rules" {
548
+ export const ForthHighlightRules: new () => Ace.HighlightRules;
549
+ }
550
+
551
+ declare module "ace/mode/forth" {
552
+ export const Mode: new () => Ace.SyntaxMode;
553
+ }
554
+
555
+ declare module "ace/mode/fortran_highlight_rules" {
556
+ export const FortranHighlightRules: new () => Ace.HighlightRules;
557
+ }
558
+
559
+ declare module "ace/mode/fortran" {
560
+ export const Mode: new () => Ace.SyntaxMode;
561
+ }
562
+
563
+ declare module "ace/mode/fsharp_highlight_rules" {
564
+ export const FSharpHighlightRules: new () => Ace.HighlightRules;
565
+ }
566
+
567
+ declare module "ace/mode/fsharp" {
568
+ export const Mode: new () => Ace.SyntaxMode;
569
+ }
570
+
571
+ declare module "ace/mode/fsl_highlight_rules" {
572
+ export const FSLHighlightRules: new () => Ace.HighlightRules;
573
+ }
574
+
575
+ declare module "ace/mode/fsl" {
576
+ export const Mode: new () => Ace.SyntaxMode;
577
+ }
578
+
579
+ declare module "ace/mode/ftl_highlight_rules" {
580
+ export const FtlHighlightRules: new () => Ace.HighlightRules;
581
+ }
582
+
583
+ declare module "ace/mode/ftl" {
584
+ export const Mode: new () => Ace.SyntaxMode;
585
+ }
586
+
587
+ declare module "ace/mode/gcode_highlight_rules" {
588
+ export const GcodeHighlightRules: new () => Ace.HighlightRules;
589
+ }
590
+
591
+ declare module "ace/mode/gcode" {
592
+ export const Mode: new () => Ace.SyntaxMode;
593
+ }
594
+
595
+ declare module "ace/mode/gherkin_highlight_rules" {
596
+ export const GherkinHighlightRules: new () => Ace.HighlightRules;
597
+ }
598
+
599
+ declare module "ace/mode/gherkin" {
600
+ export const Mode: new () => Ace.SyntaxMode;
601
+ }
602
+
603
+ declare module "ace/mode/gitignore_highlight_rules" {
604
+ export const GitignoreHighlightRules: new () => Ace.HighlightRules;
605
+ }
606
+
607
+ declare module "ace/mode/gitignore" {
608
+ export const Mode: new () => Ace.SyntaxMode;
609
+ }
610
+
611
+ declare module "ace/mode/glsl_highlight_rules" {
612
+ export const glslHighlightRules: new () => Ace.HighlightRules;
613
+ }
614
+
615
+ declare module "ace/mode/glsl" {
616
+ export const Mode: new () => Ace.SyntaxMode;
617
+ }
618
+
619
+ declare module "ace/mode/gobstones_highlight_rules" {
620
+ export const GobstonesHighlightRules: new () => Ace.HighlightRules;
621
+ }
622
+
623
+ declare module "ace/mode/gobstones" {
624
+ export const Mode: new () => Ace.SyntaxMode;
625
+ }
626
+
627
+ declare module "ace/mode/golang_highlight_rules" {
628
+ export const GolangHighlightRules: new () => Ace.HighlightRules;
629
+ }
630
+
631
+ declare module "ace/mode/golang" {
632
+ export const Mode: new () => Ace.SyntaxMode;
633
+ }
634
+
635
+ declare module "ace/mode/graphqlschema_highlight_rules" {
636
+ export const GraphQLSchemaHighlightRules: new () => Ace.HighlightRules;
637
+ }
638
+
639
+ declare module "ace/mode/graphqlschema" {
640
+ export const Mode: new () => Ace.SyntaxMode;
641
+ }
642
+
643
+ declare module "ace/mode/groovy_highlight_rules" {
644
+ export const GroovyHighlightRules: new () => Ace.HighlightRules;
645
+ }
646
+
647
+ declare module "ace/mode/groovy" {
648
+ export const Mode: new () => Ace.SyntaxMode;
649
+ }
650
+
651
+ declare module "ace/mode/haml_highlight_rules" {
652
+ export const HamlHighlightRules: new () => Ace.HighlightRules;
653
+ }
654
+
655
+ declare module "ace/mode/haml" {
656
+ export const Mode: new () => Ace.SyntaxMode;
657
+ }
658
+
659
+ declare module "ace/mode/handlebars_highlight_rules" {
660
+ export const HandlebarsHighlightRules: new () => Ace.HighlightRules;
661
+ }
662
+
663
+ declare module "ace/mode/handlebars" {
664
+ export const Mode: new () => Ace.SyntaxMode;
665
+ }
666
+
667
+ declare module "ace/mode/haskell_cabal_highlight_rules" {
668
+ export const CabalHighlightRules: new () => Ace.HighlightRules;
669
+ }
670
+
671
+ declare module "ace/mode/haskell_cabal" {
672
+ export const Mode: new () => Ace.SyntaxMode;
673
+ }
674
+
675
+ declare module "ace/mode/haskell_highlight_rules" {
676
+ export const HaskellHighlightRules: new () => Ace.HighlightRules;
677
+ }
678
+
679
+ declare module "ace/mode/haskell" {
680
+ export const Mode: new () => Ace.SyntaxMode;
681
+ }
682
+
683
+ declare module "ace/mode/haxe_highlight_rules" {
684
+ export const HaxeHighlightRules: new () => Ace.HighlightRules;
685
+ }
686
+
687
+ declare module "ace/mode/haxe" {
688
+ export const Mode: new () => Ace.SyntaxMode;
689
+ }
690
+
691
+ declare module "ace/mode/hjson_highlight_rules" {
692
+ export const HjsonHighlightRules: new () => Ace.HighlightRules;
693
+ }
694
+
695
+ declare module "ace/mode/hjson" {
696
+ export const Mode: new () => Ace.SyntaxMode;
697
+ }
698
+
699
+ declare module "ace/mode/html_completions" {
700
+ export const HtmlCompletions: new () => Ace.Completion;
701
+ }
702
+
703
+ declare module "ace/mode/html_elixir_highlight_rules" {
704
+ export const HtmlElixirHighlightRules: new () => Ace.HighlightRules;
705
+ }
706
+
707
+ declare module "ace/mode/html_elixir" {
708
+ export const Mode: new () => Ace.SyntaxMode;
709
+ }
710
+
711
+ declare module "ace/mode/html_highlight_rules" {
712
+ export const HtmlHighlightRules: new () => Ace.HighlightRules;
713
+ }
714
+
715
+ declare module "ace/mode/html_ruby_highlight_rules" {
716
+ export const HtmlRubyHighlightRules: new () => Ace.HighlightRules;
717
+ }
718
+
719
+ declare module "ace/mode/html_ruby" {
720
+ export const Mode: new () => Ace.SyntaxMode;
721
+ }
722
+
723
+ declare module "ace/mode/html" {
724
+ export const Mode: new () => Ace.SyntaxMode;
725
+ }
726
+
727
+ declare module "ace/mode/ini_highlight_rules" {
728
+ export const IniHighlightRules: new () => Ace.HighlightRules;
729
+ }
730
+
731
+ declare module "ace/mode/ini" {
732
+ export const Mode: new () => Ace.SyntaxMode;
733
+ }
734
+
735
+ declare module "ace/mode/io_highlight_rules" {
736
+ export const IoHighlightRules: new () => Ace.HighlightRules;
737
+ }
738
+
739
+ declare module "ace/mode/io" {
740
+ export const Mode: new () => Ace.SyntaxMode;
741
+ }
742
+
743
+ declare module "ace/mode/ion_highlight_rules" {
744
+ export const IonHighlightRules: new () => Ace.HighlightRules;
745
+ }
746
+
747
+ declare module "ace/mode/ion" {
748
+ export const Mode: new () => Ace.SyntaxMode;
749
+ }
750
+
751
+ declare module "ace/mode/jack_highlight_rules" {
752
+ export const JackHighlightRules: new () => Ace.HighlightRules;
753
+ }
754
+
755
+ declare module "ace/mode/jack" {
756
+ export const Mode: new () => Ace.SyntaxMode;
757
+ }
758
+
759
+ declare module "ace/mode/jade_highlight_rules" {
760
+ export const JadeHighlightRules: new () => Ace.HighlightRules;
761
+ }
762
+
763
+ declare module "ace/mode/jade" {
764
+ export const Mode: new () => Ace.SyntaxMode;
765
+ }
766
+
767
+ declare module "ace/mode/java_highlight_rules" {
768
+ export const JavaHighlightRules: new () => Ace.HighlightRules;
769
+ }
770
+
771
+ declare module "ace/mode/java" {
772
+ export const Mode: new () => Ace.SyntaxMode;
773
+ }
774
+
775
+ declare module "ace/mode/javascript_highlight_rules" {
776
+ export const JavaScriptHighlightRules: new () => Ace.HighlightRules;
777
+ }
778
+
779
+ declare module "ace/mode/javascript" {
780
+ export const Mode: new () => Ace.SyntaxMode;
781
+ }
782
+
783
+ declare module "ace/mode/jexl_highlight_rules" {
784
+ export const JexlHighlightRules: new () => Ace.HighlightRules;
785
+ }
786
+
787
+ declare module "ace/mode/jexl" {
788
+ export const Mode: new () => Ace.SyntaxMode;
789
+ }
790
+
791
+ declare module "ace/mode/js_regex_highlight_rules" {
792
+ export const JsRegexHighlightRules: new () => Ace.HighlightRules;
793
+ }
794
+
795
+ declare module "ace/mode/jsdoc_comment_highlight_rules" {
796
+ export const JsDocCommentHighlightRules: new () => Ace.HighlightRules;
797
+ }
798
+
799
+ declare module "ace/mode/json_highlight_rules" {
800
+ export const JsonHighlightRules: new () => Ace.HighlightRules;
801
+ }
802
+
803
+ declare module "ace/mode/json" {
804
+ export const Mode: new () => Ace.SyntaxMode;
805
+ }
806
+
807
+ declare module "ace/mode/json5_highlight_rules" {
808
+ export const Json5HighlightRules: new () => Ace.HighlightRules;
809
+ }
810
+
811
+ declare module "ace/mode/json5" {
812
+ export const Mode: new () => Ace.SyntaxMode;
813
+ }
814
+
815
+ declare module "ace/mode/jsp_highlight_rules" {
816
+ export const JspHighlightRules: new () => Ace.HighlightRules;
817
+ }
818
+
819
+ declare module "ace/mode/jsp" {
820
+ export const Mode: new () => Ace.SyntaxMode;
821
+ }
822
+
823
+ declare module "ace/mode/jssm_highlight_rules" {
824
+ export const JSSMHighlightRules: new () => Ace.HighlightRules;
825
+ }
826
+
827
+ declare module "ace/mode/jssm" {
828
+ export const Mode: new () => Ace.SyntaxMode;
829
+ }
830
+
831
+ declare module "ace/mode/jsx_highlight_rules" {
832
+ export const JsxHighlightRules: new () => Ace.HighlightRules;
833
+ }
834
+
835
+ declare module "ace/mode/jsx" {
836
+ export const Mode: new () => Ace.SyntaxMode;
837
+ }
838
+
839
+ declare module "ace/mode/julia_highlight_rules" {
840
+ export const JuliaHighlightRules: new () => Ace.HighlightRules;
841
+ }
842
+
843
+ declare module "ace/mode/julia" {
844
+ export const Mode: new () => Ace.SyntaxMode;
845
+ }
846
+
847
+ declare module "ace/mode/kotlin_highlight_rules" {
848
+ export const KotlinHighlightRules: new () => Ace.HighlightRules;
849
+ }
850
+
851
+ declare module "ace/mode/kotlin" {
852
+ export const Mode: new () => Ace.SyntaxMode;
853
+ }
854
+
855
+ declare module "ace/mode/latex_highlight_rules" {
856
+ export const LatexHighlightRules: new () => Ace.HighlightRules;
857
+ }
858
+
859
+ declare module "ace/mode/latex" {
860
+ export const Mode: new () => Ace.SyntaxMode;
861
+ }
862
+
863
+ declare module "ace/mode/latte_highlight_rules" {
864
+ export const LatteHighlightRules: new () => Ace.HighlightRules;
865
+ }
866
+
867
+ declare module "ace/mode/latte" {
868
+ export const Mode: new () => Ace.SyntaxMode;
869
+ }
870
+
871
+ declare module "ace/mode/less_highlight_rules" {
872
+ export const LessHighlightRules: new () => Ace.HighlightRules;
873
+ }
874
+
875
+ declare module "ace/mode/less" {
876
+ export const Mode: new () => Ace.SyntaxMode;
877
+ }
878
+
879
+ declare module "ace/mode/liquid_highlight_rules" {
880
+ export const LiquidHighlightRules: new () => Ace.HighlightRules;
881
+ }
882
+
883
+ declare module "ace/mode/liquid" {
884
+ export const Mode: new () => Ace.SyntaxMode;
885
+ }
886
+
887
+ declare module "ace/mode/lisp_highlight_rules" {
888
+ export const LispHighlightRules: new () => Ace.HighlightRules;
889
+ }
890
+
891
+ declare module "ace/mode/lisp" {
892
+ export const Mode: new () => Ace.SyntaxMode;
893
+ }
894
+
895
+ declare module "ace/mode/livescript" {
896
+ export const Mode: new () => Ace.SyntaxMode;
897
+ }
898
+
899
+ declare module "ace/mode/logiql_highlight_rules" {
900
+ export const LogiQLHighlightRules: new () => Ace.HighlightRules;
901
+ }
902
+
903
+ declare module "ace/mode/logiql" {
904
+ export const Mode: new () => Ace.SyntaxMode;
905
+ }
906
+
907
+ declare module "ace/mode/logtalk_highlight_rules" {
908
+ export const LogtalkHighlightRules: new () => Ace.HighlightRules;
909
+ }
910
+
911
+ declare module "ace/mode/logtalk" {
912
+ export const Mode: new () => Ace.SyntaxMode;
913
+ }
914
+
915
+ declare module "ace/mode/lsl_highlight_rules" {
916
+ export const LSLHighlightRules: new () => Ace.HighlightRules;
917
+ }
918
+
919
+ declare module "ace/mode/lsl" {
920
+ export const Mode: new () => Ace.SyntaxMode;
921
+ }
922
+
923
+ declare module "ace/mode/lua_highlight_rules" {
924
+ export const LuaHighlightRules: new () => Ace.HighlightRules;
925
+ }
926
+
927
+ declare module "ace/mode/lua" {
928
+ export const Mode: new () => Ace.SyntaxMode;
929
+ }
930
+
931
+ declare module "ace/mode/luapage_highlight_rules" {
932
+ export const LuaPageHighlightRules: new () => Ace.HighlightRules;
933
+ }
934
+
935
+ declare module "ace/mode/luapage" {
936
+ export const Mode: new () => Ace.SyntaxMode;
937
+ }
938
+
939
+ declare module "ace/mode/lucene_highlight_rules" {
940
+ export const LuceneHighlightRules: new () => Ace.HighlightRules;
941
+ }
942
+
943
+ declare module "ace/mode/lucene" {
944
+ export const Mode: new () => Ace.SyntaxMode;
945
+ }
946
+
947
+ declare module "ace/mode/makefile_highlight_rules" {
948
+ export const MakefileHighlightRules: new () => Ace.HighlightRules;
949
+ }
950
+
951
+ declare module "ace/mode/makefile" {
952
+ export const Mode: new () => Ace.SyntaxMode;
953
+ }
954
+
955
+ declare module "ace/mode/markdown_highlight_rules" {
956
+ export const MarkdownHighlightRules: new () => Ace.HighlightRules;
957
+ }
958
+
959
+ declare module "ace/mode/markdown" {
960
+ export const Mode: new () => Ace.SyntaxMode;
961
+ }
962
+
963
+ declare module "ace/mode/mask_highlight_rules" {
964
+ export const MaskHighlightRules: new () => Ace.HighlightRules;
965
+ }
966
+
967
+ declare module "ace/mode/mask" {
968
+ export const Mode: new () => Ace.SyntaxMode;
969
+ }
970
+
971
+ declare module "ace/mode/matching_brace_outdent" {
972
+ export const MatchingBraceOutdent: new () => Ace.Outdent;
973
+ }
974
+
975
+ declare module "ace/mode/matching_parens_outdent" {
976
+ export const MatchingParensOutdent: new () => Ace.Outdent;
977
+ }
978
+
979
+ declare module "ace/mode/matlab_highlight_rules" {
980
+ export const MatlabHighlightRules: new () => Ace.HighlightRules;
981
+ }
982
+
983
+ declare module "ace/mode/matlab" {
984
+ export const Mode: new () => Ace.SyntaxMode;
985
+ }
986
+
987
+ declare module "ace/mode/maze_highlight_rules" {
988
+ export const MazeHighlightRules: new () => Ace.HighlightRules;
989
+ }
990
+
991
+ declare module "ace/mode/maze" {
992
+ export const Mode: new () => Ace.SyntaxMode;
993
+ }
994
+
995
+ declare module "ace/mode/mediawiki_highlight_rules" {
996
+ export const MediaWikiHighlightRules: new () => Ace.HighlightRules;
997
+ }
998
+
999
+ declare module "ace/mode/mediawiki" {
1000
+ export const Mode: new () => Ace.SyntaxMode;
1001
+ }
1002
+
1003
+ declare module "ace/mode/mel_highlight_rules" {
1004
+ export const MELHighlightRules: new () => Ace.HighlightRules;
1005
+ }
1006
+
1007
+ declare module "ace/mode/mel" {
1008
+ export const Mode: new () => Ace.SyntaxMode;
1009
+ }
1010
+
1011
+ declare module "ace/mode/mips_highlight_rules" {
1012
+ export const MIPSHighlightRules: new () => Ace.HighlightRules;
1013
+ }
1014
+
1015
+ declare module "ace/mode/mips" {
1016
+ export const Mode: new () => Ace.SyntaxMode;
1017
+ }
1018
+
1019
+ declare module "ace/mode/mixal_highlight_rules" {
1020
+ export const MixalHighlightRules: new () => Ace.HighlightRules;
1021
+ }
1022
+
1023
+ declare module "ace/mode/mixal" {
1024
+ export const Mode: new () => Ace.SyntaxMode;
1025
+ }
1026
+
1027
+ declare module "ace/mode/mushcode_highlight_rules" {
1028
+ export const MushCodeRules: new () => Ace.HighlightRules;
1029
+ }
1030
+
1031
+ declare module "ace/mode/mushcode" {
1032
+ export const Mode: new () => Ace.SyntaxMode;
1033
+ }
1034
+
1035
+ declare module "ace/mode/mysql_highlight_rules" {
1036
+ export const MysqlHighlightRules: new () => Ace.HighlightRules;
1037
+ }
1038
+
1039
+ declare module "ace/mode/mysql" {
1040
+ export const Mode: new () => Ace.SyntaxMode;
1041
+ }
1042
+
1043
+ declare module "ace/mode/nasal_highlight_rules" {
1044
+ export const NasalHighlightRules: new () => Ace.HighlightRules;
1045
+ }
1046
+
1047
+ declare module "ace/mode/nasal" {
1048
+ export const Mode: new () => Ace.SyntaxMode;
1049
+ }
1050
+
1051
+ declare module "ace/mode/nginx_highlight_rules" {
1052
+ export const NginxHighlightRules: new () => Ace.HighlightRules;
1053
+ }
1054
+
1055
+ declare module "ace/mode/nginx" {
1056
+ export const Mode: new () => Ace.SyntaxMode;
1057
+ }
1058
+
1059
+ declare module "ace/mode/nim_highlight_rules" {
1060
+ export const NimHighlightRules: new () => Ace.HighlightRules;
1061
+ }
1062
+
1063
+ declare module "ace/mode/nim" {
1064
+ export const Mode: new () => Ace.SyntaxMode;
1065
+ }
1066
+
1067
+ declare module "ace/mode/nix_highlight_rules" {
1068
+ export const NixHighlightRules: new () => Ace.HighlightRules;
1069
+ }
1070
+
1071
+ declare module "ace/mode/nix" {
1072
+ export const Mode: new () => Ace.SyntaxMode;
1073
+ }
1074
+
1075
+ declare module "ace/mode/nsis_highlight_rules" {
1076
+ export const NSISHighlightRules: new () => Ace.HighlightRules;
1077
+ }
1078
+
1079
+ declare module "ace/mode/nsis" {
1080
+ export const Mode: new () => Ace.SyntaxMode;
1081
+ }
1082
+
1083
+ declare module "ace/mode/nunjucks_highlight_rules" {
1084
+ export const NunjucksHighlightRules: new () => Ace.HighlightRules;
1085
+ }
1086
+
1087
+ declare module "ace/mode/nunjucks" {
1088
+ export const Mode: new () => Ace.SyntaxMode;
1089
+ }
1090
+
1091
+ declare module "ace/mode/objectivec_highlight_rules" {
1092
+ export const ObjectiveCHighlightRules: new () => Ace.HighlightRules;
1093
+ }
1094
+
1095
+ declare module "ace/mode/objectivec" {
1096
+ export const Mode: new () => Ace.SyntaxMode;
1097
+ }
1098
+
1099
+ declare module "ace/mode/ocaml_highlight_rules" {
1100
+ export const OcamlHighlightRules: new () => Ace.HighlightRules;
1101
+ }
1102
+
1103
+ declare module "ace/mode/ocaml" {
1104
+ export const Mode: new () => Ace.SyntaxMode;
1105
+ }
1106
+
1107
+ declare module "ace/mode/odin_highlight_rules" {
1108
+ export const OdinHighlightRules: new () => Ace.HighlightRules;
1109
+ }
1110
+
1111
+ declare module "ace/mode/odin" {
1112
+ export const Mode: new () => Ace.SyntaxMode;
1113
+ }
1114
+
1115
+ declare module "ace/mode/partiql_highlight_rules" {
1116
+ export const PartiqlHighlightRules: new () => Ace.HighlightRules;
1117
+ }
1118
+
1119
+ declare module "ace/mode/partiql" {
1120
+ export const Mode: new () => Ace.SyntaxMode;
1121
+ }
1122
+
1123
+ declare module "ace/mode/pascal_highlight_rules" {
1124
+ export const PascalHighlightRules: new () => Ace.HighlightRules;
1125
+ }
1126
+
1127
+ declare module "ace/mode/pascal" {
1128
+ export const Mode: new () => Ace.SyntaxMode;
1129
+ }
1130
+
1131
+ declare module "ace/mode/perl_highlight_rules" {
1132
+ export const PerlHighlightRules: new () => Ace.HighlightRules;
1133
+ }
1134
+
1135
+ declare module "ace/mode/perl" {
1136
+ export const Mode: new () => Ace.SyntaxMode;
1137
+ }
1138
+
1139
+ declare module "ace/mode/pgsql_highlight_rules" {
1140
+ export const PgsqlHighlightRules: new () => Ace.HighlightRules;
1141
+ }
1142
+
1143
+ declare module "ace/mode/pgsql" {
1144
+ export const Mode: new () => Ace.SyntaxMode;
1145
+ }
1146
+
1147
+ declare module "ace/mode/php_completions" {
1148
+ export const PhpCompletions: new () => Ace.Completion;
1149
+ }
1150
+
1151
+ declare module "ace/mode/php_highlight_rules" {
1152
+ export const PhpHighlightRules: new () => Ace.HighlightRules;
1153
+ export const PhpLangHighlightRules: new () => Ace.HighlightRules;
1154
+ }
1155
+
1156
+ declare module "ace/mode/php_laravel_blade_highlight_rules" {
1157
+ export const PHPLaravelBladeHighlightRules: new () => Ace.HighlightRules;
1158
+ }
1159
+
1160
+ declare module "ace/mode/php_laravel_blade" {
1161
+ export const Mode: new () => Ace.SyntaxMode;
1162
+ }
1163
+
1164
+ declare module "ace/mode/php" {
1165
+ export const Mode: new () => Ace.SyntaxMode;
1166
+ }
1167
+
1168
+ declare module "ace/mode/pig_highlight_rules" {
1169
+ export const PigHighlightRules: new () => Ace.HighlightRules;
1170
+ }
1171
+
1172
+ declare module "ace/mode/pig" {
1173
+ export const Mode: new () => Ace.SyntaxMode;
1174
+ }
1175
+
1176
+ declare module "ace/mode/plain_text" {
1177
+ export const Mode: new () => Ace.SyntaxMode;
1178
+ }
1179
+
1180
+ declare module "ace/mode/plsql_highlight_rules" {
1181
+ export const plsqlHighlightRules: new () => Ace.HighlightRules;
1182
+ }
1183
+
1184
+ declare module "ace/mode/plsql" {
1185
+ export const Mode: new () => Ace.SyntaxMode;
1186
+ }
1187
+
1188
+ declare module "ace/mode/powershell_highlight_rules" {
1189
+ export const PowershellHighlightRules: new () => Ace.HighlightRules;
1190
+ }
1191
+
1192
+ declare module "ace/mode/powershell" {
1193
+ export const Mode: new () => Ace.SyntaxMode;
1194
+ }
1195
+
1196
+ declare module "ace/mode/praat_highlight_rules" {
1197
+ export const PraatHighlightRules: new () => Ace.HighlightRules;
1198
+ }
1199
+
1200
+ declare module "ace/mode/praat" {
1201
+ export const Mode: new () => Ace.SyntaxMode;
1202
+ }
1203
+
1204
+ declare module "ace/mode/prisma_highlight_rules" {
1205
+ export const PrismaHighlightRules: new () => Ace.HighlightRules;
1206
+ }
1207
+
1208
+ declare module "ace/mode/prisma" {
1209
+ export const Mode: new () => Ace.SyntaxMode;
1210
+ }
1211
+
1212
+ declare module "ace/mode/prolog_highlight_rules" {
1213
+ export const PrologHighlightRules: new () => Ace.HighlightRules;
1214
+ }
1215
+
1216
+ declare module "ace/mode/prolog" {
1217
+ export const Mode: new () => Ace.SyntaxMode;
1218
+ }
1219
+
1220
+ declare module "ace/mode/properties_highlight_rules" {
1221
+ export const PropertiesHighlightRules: new () => Ace.HighlightRules;
1222
+ }
1223
+
1224
+ declare module "ace/mode/properties" {
1225
+ export const Mode: new () => Ace.SyntaxMode;
1226
+ }
1227
+
1228
+ declare module "ace/mode/protobuf_highlight_rules" {
1229
+ export const ProtobufHighlightRules: new () => Ace.HighlightRules;
1230
+ }
1231
+
1232
+ declare module "ace/mode/protobuf" {
1233
+ export const Mode: new () => Ace.SyntaxMode;
1234
+ }
1235
+
1236
+ declare module "ace/mode/prql_highlight_rules" {
1237
+ export const PrqlHighlightRules: new () => Ace.HighlightRules;
1238
+ }
1239
+
1240
+ declare module "ace/mode/prql" {
1241
+ export const Mode: new () => Ace.SyntaxMode;
1242
+ }
1243
+
1244
+ declare module "ace/mode/puppet_highlight_rules" {
1245
+ export const PuppetHighlightRules: new () => Ace.HighlightRules;
1246
+ }
1247
+
1248
+ declare module "ace/mode/puppet" {
1249
+ export const Mode: new () => Ace.SyntaxMode;
1250
+ }
1251
+
1252
+ declare module "ace/mode/python_highlight_rules" {
1253
+ export const PythonHighlightRules: new () => Ace.HighlightRules;
1254
+ }
1255
+
1256
+ declare module "ace/mode/python" {
1257
+ export const Mode: new () => Ace.SyntaxMode;
1258
+ }
1259
+
1260
+ declare module "ace/mode/qml_highlight_rules" {
1261
+ export const QmlHighlightRules: new () => Ace.HighlightRules;
1262
+ }
1263
+
1264
+ declare module "ace/mode/qml" {
1265
+ export const Mode: new () => Ace.SyntaxMode;
1266
+ }
1267
+
1268
+ declare module "ace/mode/r_highlight_rules" {
1269
+ export const RHighlightRules: new () => Ace.HighlightRules;
1270
+ }
1271
+
1272
+ declare module "ace/mode/r" {
1273
+ export const Mode: new () => Ace.SyntaxMode;
1274
+ }
1275
+
1276
+ declare module "ace/mode/raku_highlight_rules" {
1277
+ export const RakuHighlightRules: new () => Ace.HighlightRules;
1278
+ }
1279
+
1280
+ declare module "ace/mode/raku" {
1281
+ export const Mode: new () => Ace.SyntaxMode;
1282
+ }
1283
+
1284
+ declare module "ace/mode/razor_completions" {
1285
+ export const RazorCompletions: new () => Ace.Completion;
1286
+ }
1287
+
1288
+ declare module "ace/mode/razor_highlight_rules" {
1289
+ export const RazorHighlightRules: new () => Ace.HighlightRules;
1290
+ export const RazorLangHighlightRules: new () => Ace.HighlightRules;
1291
+ }
1292
+
1293
+ declare module "ace/mode/razor" {
1294
+ export const Mode: new () => Ace.SyntaxMode;
1295
+ }
1296
+
1297
+ declare module "ace/mode/rdoc_highlight_rules" {
1298
+ export const RDocHighlightRules: new () => Ace.HighlightRules;
1299
+ }
1300
+
1301
+ declare module "ace/mode/rdoc" {
1302
+ export const Mode: new () => Ace.SyntaxMode;
1303
+ }
1304
+
1305
+ declare module "ace/mode/red_highlight_rules" {
1306
+ export const RedHighlightRules: new () => Ace.HighlightRules;
1307
+ }
1308
+
1309
+ declare module "ace/mode/red" {
1310
+ export const Mode: new () => Ace.SyntaxMode;
1311
+ }
1312
+
1313
+ declare module "ace/mode/redshift_highlight_rules" {
1314
+ export const RedshiftHighlightRules: new () => Ace.HighlightRules;
1315
+ }
1316
+
1317
+ declare module "ace/mode/redshift" {
1318
+ export const Mode: new () => Ace.SyntaxMode;
1319
+ }
1320
+
1321
+ declare module "ace/mode/rhtml_highlight_rules" {
1322
+ export const RHtmlHighlightRules: new () => Ace.HighlightRules;
1323
+ }
1324
+
1325
+ declare module "ace/mode/rhtml" {
1326
+ export const Mode: new () => Ace.SyntaxMode;
1327
+ }
1328
+
1329
+ declare module "ace/mode/robot_highlight_rules" {
1330
+ export const RobotHighlightRules: new () => Ace.HighlightRules;
1331
+ }
1332
+
1333
+ declare module "ace/mode/robot" {
1334
+ export const Mode: new () => Ace.SyntaxMode;
1335
+ }
1336
+
1337
+ declare module "ace/mode/rst_highlight_rules" {
1338
+ export const RSTHighlightRules: new () => Ace.HighlightRules;
1339
+ }
1340
+
1341
+ declare module "ace/mode/rst" {
1342
+ export const Mode: new () => Ace.SyntaxMode;
1343
+ }
1344
+
1345
+ declare module "ace/mode/ruby_highlight_rules" {
1346
+ export const constantOtherSymbol: { token: string; regex: string };
1347
+ export const qString: { token: string; regex: string };
1348
+ export const qqString: { token: string; regex: string };
1349
+ export const tString: { token: string; regex: string };
1350
+ export const constantNumericHex: { token: string; regex: string };
1351
+ export const constantNumericBinary: { token: string; regex: RegExp };
1352
+ export const constantNumericDecimal: { token: string; regex: RegExp };
1353
+ export const constantNumericOctal: { token: string; regex: RegExp };
1354
+ export const constantNumericRational: { token: string; regex: RegExp };
1355
+ export const constantNumericComplex: { token: string; regex: RegExp };
1356
+ export const constantNumericFloat: { token: string; regex: string };
1357
+ export const instanceVariable: { token: string; regex: string };
1358
+ export const RubyHighlightRules: new () => Ace.HighlightRules;
1359
+ }
1360
+
1361
+ declare module "ace/mode/ruby" {
1362
+ export const Mode: new () => Ace.SyntaxMode;
1363
+ }
1364
+
1365
+ declare module "ace/mode/rust_highlight_rules" {
1366
+ export const RustHighlightRules: new () => Ace.HighlightRules;
1367
+ }
1368
+
1369
+ declare module "ace/mode/rust" {
1370
+ export const Mode: new () => Ace.SyntaxMode;
1371
+ }
1372
+
1373
+ declare module "ace/mode/sac_highlight_rules" {
1374
+ export const sacHighlightRules: new () => Ace.HighlightRules;
1375
+ }
1376
+
1377
+ declare module "ace/mode/sac" {
1378
+ export const Mode: new () => Ace.SyntaxMode;
1379
+ }
1380
+
1381
+ declare module "ace/mode/sass_highlight_rules" {
1382
+ export const SassHighlightRules: new () => Ace.HighlightRules;
1383
+ }
1384
+
1385
+ declare module "ace/mode/sass" {
1386
+ export const Mode: new () => Ace.SyntaxMode;
1387
+ }
1388
+
1389
+ declare module "ace/mode/scad_highlight_rules" {
1390
+ export const scadHighlightRules: new () => Ace.HighlightRules;
1391
+ }
1392
+
1393
+ declare module "ace/mode/scad" {
1394
+ export const Mode: new () => Ace.SyntaxMode;
1395
+ }
1396
+
1397
+ declare module "ace/mode/scala_highlight_rules" {
1398
+ export const ScalaHighlightRules: new () => Ace.HighlightRules;
1399
+ }
1400
+
1401
+ declare module "ace/mode/scala" {
1402
+ export const Mode: new () => Ace.SyntaxMode;
1403
+ }
1404
+
1405
+ declare module "ace/mode/scheme_highlight_rules" {
1406
+ export const SchemeHighlightRules: new () => Ace.HighlightRules;
1407
+ }
1408
+
1409
+ declare module "ace/mode/scheme" {
1410
+ export const Mode: new () => Ace.SyntaxMode;
1411
+ }
1412
+
1413
+ declare module "ace/mode/scrypt_highlight_rules" {
1414
+ export const scryptHighlightRules: new () => Ace.HighlightRules;
1415
+ }
1416
+
1417
+ declare module "ace/mode/scrypt" {
1418
+ export const Mode: new () => Ace.SyntaxMode;
1419
+ }
1420
+
1421
+ declare module "ace/mode/scss_highlight_rules" {
1422
+ export const ScssHighlightRules: new () => Ace.HighlightRules;
1423
+ }
1424
+
1425
+ declare module "ace/mode/scss" {
1426
+ export const Mode: new () => Ace.SyntaxMode;
1427
+ }
1428
+
1429
+ declare module "ace/mode/sh_highlight_rules" {
1430
+ export const reservedKeywords: string;
1431
+ export const languageConstructs: string;
1432
+ export const ShHighlightRules: new () => Ace.HighlightRules;
1433
+ }
1434
+
1435
+ declare module "ace/mode/sh" {
1436
+ export const Mode: new () => Ace.SyntaxMode;
1437
+ }
1438
+
1439
+ declare module "ace/mode/sjs_highlight_rules" {
1440
+ export const SJSHighlightRules: new () => Ace.HighlightRules;
1441
+ }
1442
+
1443
+ declare module "ace/mode/sjs" {
1444
+ export const Mode: new () => Ace.SyntaxMode;
1445
+ }
1446
+
1447
+ declare module "ace/mode/slim_highlight_rules" {
1448
+ export const SlimHighlightRules: new () => Ace.HighlightRules;
1449
+ }
1450
+
1451
+ declare module "ace/mode/slim" {
1452
+ export const Mode: new () => Ace.SyntaxMode;
1453
+ }
1454
+
1455
+ declare module "ace/mode/smarty_highlight_rules" {
1456
+ export const SmartyHighlightRules: new () => Ace.HighlightRules;
1457
+ }
1458
+
1459
+ declare module "ace/mode/smarty" {
1460
+ export const Mode: new () => Ace.SyntaxMode;
1461
+ }
1462
+
1463
+ declare module "ace/mode/smithy_highlight_rules" {
1464
+ export const SmithyHighlightRules: new () => Ace.HighlightRules;
1465
+ }
1466
+
1467
+ declare module "ace/mode/smithy" {
1468
+ export const Mode: new () => Ace.SyntaxMode;
1469
+ }
1470
+
1471
+ declare module "ace/mode/snippets" {
1472
+ export const SnippetHighlightRules: new () => Ace.HighlightRules;
1473
+ export const SnippetGroupHighlightRules: new () => Ace.HighlightRules;
1474
+ export const Mode: new () => Ace.SyntaxMode;
1475
+ }
1476
+
1477
+ declare module "ace/mode/soy_template_highlight_rules" {
1478
+ export const SoyTemplateHighlightRules: new () => Ace.HighlightRules;
1479
+ }
1480
+
1481
+ declare module "ace/mode/soy_template" {
1482
+ export const Mode: new () => Ace.SyntaxMode;
1483
+ }
1484
+
1485
+ declare module "ace/mode/space_highlight_rules" {
1486
+ export const SpaceHighlightRules: new () => Ace.HighlightRules;
1487
+ }
1488
+
1489
+ declare module "ace/mode/space" {
1490
+ export const Mode: new () => Ace.SyntaxMode;
1491
+ }
1492
+
1493
+ declare module "ace/mode/sparql_highlight_rules" {
1494
+ export const SPARQLHighlightRules: new () => Ace.HighlightRules;
1495
+ }
1496
+
1497
+ declare module "ace/mode/sparql" {
1498
+ export const Mode: new () => Ace.SyntaxMode;
1499
+ }
1500
+
1501
+ declare module "ace/mode/sql_highlight_rules" {
1502
+ export const SqlHighlightRules: new () => Ace.HighlightRules;
1503
+ }
1504
+
1505
+ declare module "ace/mode/sql" {
1506
+ export const Mode: new () => Ace.SyntaxMode;
1507
+ }
1508
+
1509
+ declare module "ace/mode/sqlserver_highlight_rules" {
1510
+ export const SqlHighlightRules: new () => Ace.HighlightRules;
1511
+ }
1512
+
1513
+ declare module "ace/mode/sqlserver" {
1514
+ export const Mode: new () => Ace.SyntaxMode;
1515
+ }
1516
+
1517
+ declare module "ace/mode/stylus_highlight_rules" {
1518
+ export const StylusHighlightRules: new () => Ace.HighlightRules;
1519
+ }
1520
+
1521
+ declare module "ace/mode/stylus" {
1522
+ export const Mode: new () => Ace.SyntaxMode;
1523
+ }
1524
+
1525
+ declare module "ace/mode/svg_highlight_rules" {
1526
+ export const SvgHighlightRules: new () => Ace.HighlightRules;
1527
+ }
1528
+
1529
+ declare module "ace/mode/svg" {
1530
+ export const Mode: new () => Ace.SyntaxMode;
1531
+ }
1532
+
1533
+ declare module "ace/mode/swift_highlight_rules" {
1534
+ export const HighlightRules: new () => Ace.HighlightRules;
1535
+ export const SwiftHighlightRules: new () => Ace.HighlightRules;
1536
+ }
1537
+
1538
+ declare module "ace/mode/swift" {
1539
+ export const Mode: new () => Ace.SyntaxMode;
1540
+ }
1541
+
1542
+ declare module "ace/mode/tcl_highlight_rules" {
1543
+ export const TclHighlightRules: new () => Ace.HighlightRules;
1544
+ }
1545
+
1546
+ declare module "ace/mode/tcl" {
1547
+ export const Mode: new () => Ace.SyntaxMode;
1548
+ }
1549
+
1550
+ declare module "ace/mode/terraform_highlight_rules" {
1551
+ export const TerraformHighlightRules: new () => Ace.HighlightRules;
1552
+ }
1553
+
1554
+ declare module "ace/mode/terraform" {
1555
+ export const Mode: new () => Ace.SyntaxMode;
1556
+ }
1557
+
1558
+ declare module "ace/mode/tex_highlight_rules" {
1559
+ export const TexHighlightRules: new () => Ace.HighlightRules;
1560
+ }
1561
+
1562
+ declare module "ace/mode/tex" {
1563
+ export const Mode: new () => Ace.SyntaxMode;
1564
+ }
1565
+
1566
+ declare module "ace/mode/text_highlight_rules" {
1567
+ export const TextHighlightRules: new () => Ace.HighlightRules;
1568
+ }
1569
+
1570
+ declare module "ace/mode/text" {
1571
+ export const Mode: new () => Ace.SyntaxMode;
1572
+ }
1573
+
1574
+ declare module "ace/mode/textile_highlight_rules" {
1575
+ export const TextileHighlightRules: new () => Ace.HighlightRules;
1576
+ }
1577
+
1578
+ declare module "ace/mode/textile" {
1579
+ export const Mode: new () => Ace.SyntaxMode;
1580
+ }
1581
+
1582
+ declare module "ace/mode/toml_highlight_rules" {
1583
+ export const TomlHighlightRules: new () => Ace.HighlightRules;
1584
+ }
1585
+
1586
+ declare module "ace/mode/toml" {
1587
+ export const Mode: new () => Ace.SyntaxMode;
1588
+ }
1589
+
1590
+ declare module "ace/mode/tsv_highlight_rules" {
1591
+ export const TsvHighlightRules: new () => Ace.HighlightRules;
1592
+ }
1593
+
1594
+ declare module "ace/mode/tsv" {
1595
+ export const Mode: new () => Ace.SyntaxMode;
1596
+ }
1597
+
1598
+ declare module "ace/mode/tsx_highlight_rules" {
1599
+ export const TsxHighlightRules: new () => Ace.HighlightRules;
1600
+ }
1601
+
1602
+ declare module "ace/mode/tsx" {
1603
+ export const Mode: new () => Ace.SyntaxMode;
1604
+ }
1605
+
1606
+ declare module "ace/mode/turtle_highlight_rules" {
1607
+ export const TurtleHighlightRules: new () => Ace.HighlightRules;
1608
+ }
1609
+
1610
+ declare module "ace/mode/turtle" {
1611
+ export const Mode: new () => Ace.SyntaxMode;
1612
+ }
1613
+
1614
+ declare module "ace/mode/twig_highlight_rules" {
1615
+ export const TwigHighlightRules: new () => Ace.HighlightRules;
1616
+ }
1617
+
1618
+ declare module "ace/mode/twig" {
1619
+ export const Mode: new () => Ace.SyntaxMode;
1620
+ }
1621
+
1622
+ declare module "ace/mode/typescript_highlight_rules" {
1623
+ export const TypeScriptHighlightRules: new () => Ace.HighlightRules;
1624
+ }
1625
+
1626
+ declare module "ace/mode/typescript" {
1627
+ export const Mode: new () => Ace.SyntaxMode;
1628
+ }
1629
+
1630
+ declare module "ace/mode/vala_highlight_rules" {
1631
+ export const ValaHighlightRules: new () => Ace.HighlightRules;
1632
+ }
1633
+
1634
+ declare module "ace/mode/vala" {
1635
+ export const Mode: new () => Ace.SyntaxMode;
1636
+ }
1637
+
1638
+ declare module "ace/mode/vbscript_highlight_rules" {
1639
+ export const VBScriptHighlightRules: new () => Ace.HighlightRules;
1640
+ }
1641
+
1642
+ declare module "ace/mode/vbscript" {
1643
+ export const Mode: new () => Ace.SyntaxMode;
1644
+ }
1645
+
1646
+ declare module "ace/mode/velocity_highlight_rules" {
1647
+ export const VelocityHighlightRules: new () => Ace.HighlightRules;
1648
+ }
1649
+
1650
+ declare module "ace/mode/velocity" {
1651
+ export const Mode: new () => Ace.SyntaxMode;
1652
+ }
1653
+
1654
+ declare module "ace/mode/verilog_highlight_rules" {
1655
+ export const VerilogHighlightRules: new () => Ace.HighlightRules;
1656
+ }
1657
+
1658
+ declare module "ace/mode/verilog" {
1659
+ export const Mode: new () => Ace.SyntaxMode;
1660
+ }
1661
+
1662
+ declare module "ace/mode/vhdl_highlight_rules" {
1663
+ export const VHDLHighlightRules: new () => Ace.HighlightRules;
1664
+ }
1665
+
1666
+ declare module "ace/mode/vhdl" {
1667
+ export const Mode: new () => Ace.SyntaxMode;
1668
+ }
1669
+
1670
+ declare module "ace/mode/visualforce_highlight_rules" {
1671
+ export const VisualforceHighlightRules: new () => Ace.HighlightRules;
1672
+ }
1673
+
1674
+ declare module "ace/mode/visualforce" {
1675
+ export const Mode: new () => Ace.SyntaxMode;
1676
+ }
1677
+
1678
+ declare module "ace/mode/vue_highlight_rules" {
1679
+ export const VueHighlightRules: new () => Ace.HighlightRules;
1680
+ }
1681
+
1682
+ declare module "ace/mode/vue" {
1683
+ export const Mode: new () => Ace.SyntaxMode;
1684
+ }
1685
+
1686
+ declare module "ace/mode/wollok_highlight_rules" {
1687
+ export const WollokHighlightRules: new () => Ace.HighlightRules;
1688
+ }
1689
+
1690
+ declare module "ace/mode/wollok" {
1691
+ export const Mode: new () => Ace.SyntaxMode;
1692
+ }
1693
+
1694
+ declare module "ace/mode/xml_highlight_rules" {
1695
+ export const XmlHighlightRules: new () => Ace.HighlightRules;
1696
+ }
1697
+
1698
+ declare module "ace/mode/xml" {
1699
+ export const Mode: new () => Ace.SyntaxMode;
1700
+ }
1701
+
1702
+ declare module "ace/mode/yaml_highlight_rules" {
1703
+ export const YamlHighlightRules: new () => Ace.HighlightRules;
1704
+ }
1705
+
1706
+ declare module "ace/mode/yaml" {
1707
+ export const Mode: new () => Ace.SyntaxMode;
1708
+ }
1709
+
1710
+ declare module "ace/mode/zeek_highlight_rules" {
1711
+ export const ZeekHighlightRules: new () => Ace.HighlightRules;
1712
+ }
1713
+
1714
+ declare module "ace/mode/zeek" {
1715
+ export const Mode: new () => Ace.SyntaxMode;
1716
+ }
1717
+
1718
+ declare module "ace/mode/zig_highlight_rules" {
1719
+ export const ZigHighlightRules: new () => Ace.HighlightRules;
1720
+ }
1721
+
1722
+ declare module "ace/mode/zig" {
1723
+ export const Mode: new () => Ace.SyntaxMode;
1724
+ }