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,406 @@
1
+ /* This file is generated using `npm run update-types` */
2
+
3
+ declare module "ace/snippets/abc.snippets" {
4
+ const _exports: string;
5
+ export = _exports;
6
+ }
7
+ declare module "ace/snippets/abc" {
8
+ export const snippetText: string;
9
+ export const scope: "abc";
10
+ }
11
+ declare module "ace/snippets/actionscript.snippets" {
12
+ const _exports: string;
13
+ export = _exports;
14
+ }
15
+ declare module "ace/snippets/actionscript" {
16
+ export const snippetText: string;
17
+ export const scope: "actionscript";
18
+ }
19
+ declare module "ace/snippets/c_cpp.snippets" {
20
+ const _exports: string;
21
+ export = _exports;
22
+ }
23
+ declare module "ace/snippets/c_cpp" {
24
+ export const snippetText: string;
25
+ export const scope: "c_cpp";
26
+ }
27
+ declare module "ace/snippets/clojure.snippets" {
28
+ const _exports: string;
29
+ export = _exports;
30
+ }
31
+ declare module "ace/snippets/clojure" {
32
+ export const snippetText: string;
33
+ export const scope: "clojure";
34
+ }
35
+ declare module "ace/snippets/coffee.snippets" {
36
+ const _exports: string;
37
+ export = _exports;
38
+ }
39
+ declare module "ace/snippets/coffee" {
40
+ export const snippetText: string;
41
+ export const scope: "coffee";
42
+ }
43
+ declare module "ace/snippets/csound_document.snippets" {
44
+ const _exports: string;
45
+ export = _exports;
46
+ }
47
+ declare module "ace/snippets/csound_document" {
48
+ export const snippetText: string;
49
+ export const scope: "csound_document";
50
+ }
51
+ declare module "ace/snippets/csound_orchestra.snippets" {
52
+ const _exports: string;
53
+ export = _exports;
54
+ }
55
+ declare module "ace/snippets/csound_orchestra" {
56
+ export const snippetText: string;
57
+ export const scope: "csound_orchestra";
58
+ }
59
+ declare module "ace/snippets/css.snippets" {
60
+ const _exports: string;
61
+ export = _exports;
62
+ }
63
+ declare module "ace/snippets/css" {
64
+ export const snippetText: string;
65
+ export const scope: "css";
66
+ }
67
+ declare module "ace/snippets/dart.snippets" {
68
+ const _exports: string;
69
+ export = _exports;
70
+ }
71
+ declare module "ace/snippets/dart" {
72
+ export const snippetText: string;
73
+ export const scope: "dart";
74
+ }
75
+ declare module "ace/snippets/diff.snippets" {
76
+ const _exports: string;
77
+ export = _exports;
78
+ }
79
+ declare module "ace/snippets/diff" {
80
+ export const snippetText: string;
81
+ export const scope: "diff";
82
+ }
83
+ declare module "ace/snippets/django.snippets" {
84
+ const _exports: string;
85
+ export = _exports;
86
+ }
87
+ declare module "ace/snippets/django" {
88
+ export const snippetText: string;
89
+ export const scope: "django";
90
+ }
91
+ declare module "ace/snippets/drools.snippets" {
92
+ const _exports: string;
93
+ export = _exports;
94
+ }
95
+ declare module "ace/snippets/drools" {
96
+ export const snippetText: string;
97
+ export const scope: "drools";
98
+ }
99
+ declare module "ace/snippets/edifact.snippets" {
100
+ const _exports: string;
101
+ export = _exports;
102
+ }
103
+ declare module "ace/snippets/edifact" {
104
+ export const snippetText: string;
105
+ export const scope: "edifact";
106
+ }
107
+ declare module "ace/snippets/erlang.snippets" {
108
+ const _exports: string;
109
+ export = _exports;
110
+ }
111
+ declare module "ace/snippets/erlang" {
112
+ export const snippetText: string;
113
+ export const scope: "erlang";
114
+ }
115
+ declare module "ace/snippets/fsl.snippets" {
116
+ const _exports: string;
117
+ export = _exports;
118
+ }
119
+ declare module "ace/snippets/fsl" {
120
+ export const snippetText: string;
121
+ export const scope: "fsl";
122
+ }
123
+ declare module "ace/snippets/gobstones.snippets" {
124
+ const _exports: string;
125
+ export = _exports;
126
+ }
127
+ declare module "ace/snippets/gobstones" {
128
+ export const snippetText: string;
129
+ export const scope: "gobstones";
130
+ }
131
+ declare module "ace/snippets/graphqlschema.snippets" {
132
+ const _exports: string;
133
+ export = _exports;
134
+ }
135
+ declare module "ace/snippets/graphqlschema" {
136
+ export const snippetText: string;
137
+ export const scope: "graphqlschema";
138
+ }
139
+ declare module "ace/snippets/haml.snippets" {
140
+ const _exports: string;
141
+ export = _exports;
142
+ }
143
+ declare module "ace/snippets/haml" {
144
+ export const snippetText: string;
145
+ export const scope: "haml";
146
+ }
147
+ declare module "ace/snippets/haskell.snippets" {
148
+ const _exports: string;
149
+ export = _exports;
150
+ }
151
+ declare module "ace/snippets/haskell" {
152
+ export const snippetText: string;
153
+ export const scope: "haskell";
154
+ }
155
+ declare module "ace/snippets/html.snippets" {
156
+ const _exports: string;
157
+ export = _exports;
158
+ }
159
+ declare module "ace/snippets/html" {
160
+ export const snippetText: string;
161
+ export const scope: "html";
162
+ }
163
+ declare module "ace/snippets/io" {
164
+ export const snippets: (
165
+ | {
166
+ content: string;
167
+ name: string;
168
+ scope: string;
169
+ tabTrigger: string;
170
+ keyEquivalent?: undefined;
171
+ }
172
+ | {
173
+ content: string;
174
+ keyEquivalent: string;
175
+ name: string;
176
+ scope: string;
177
+ tabTrigger: string;
178
+ }
179
+ | {
180
+ content: string;
181
+ keyEquivalent: string;
182
+ name: string;
183
+ scope: string;
184
+ tabTrigger?: undefined;
185
+ }
186
+ )[];
187
+ export const scope: "io";
188
+ }
189
+ declare module "ace/snippets/java.snippets" {
190
+ const _exports: string;
191
+ export = _exports;
192
+ }
193
+ declare module "ace/snippets/java" {
194
+ export const snippetText: string;
195
+ export const scope: "java";
196
+ }
197
+ declare module "ace/snippets/javascript.snippets" {
198
+ const _exports: string;
199
+ export = _exports;
200
+ }
201
+ declare module "ace/snippets/javascript" {
202
+ export const snippetText: string;
203
+ export const scope: "javascript";
204
+ }
205
+ declare module "ace/snippets/jsp.snippets" {
206
+ const _exports: string;
207
+ export = _exports;
208
+ }
209
+ declare module "ace/snippets/jsp" {
210
+ export const snippetText: string;
211
+ export const scope: "jsp";
212
+ }
213
+ declare module "ace/snippets/liquid.snippets" {
214
+ const _exports: string;
215
+ export = _exports;
216
+ }
217
+ declare module "ace/snippets/liquid" {
218
+ export const snippetText: string;
219
+ export const scope: "liquid";
220
+ }
221
+ declare module "ace/snippets/lsl.snippets" {
222
+ const _exports: string;
223
+ export = _exports;
224
+ }
225
+ declare module "ace/snippets/lsl" {
226
+ export const snippetText: string;
227
+ export const scope: "lsl";
228
+ }
229
+ declare module "ace/snippets/lua.snippets" {
230
+ const _exports: string;
231
+ export = _exports;
232
+ }
233
+ declare module "ace/snippets/lua" {
234
+ export const snippetText: string;
235
+ export const scope: "lua";
236
+ }
237
+ declare module "ace/snippets/makefile.snippets" {
238
+ const _exports: string;
239
+ export = _exports;
240
+ }
241
+ declare module "ace/snippets/makefile" {
242
+ export const snippetText: string;
243
+ export const scope: "makefile";
244
+ }
245
+ declare module "ace/snippets/markdown.snippets" {
246
+ const _exports: string;
247
+ export = _exports;
248
+ }
249
+ declare module "ace/snippets/markdown" {
250
+ export const snippetText: string;
251
+ export const scope: "markdown";
252
+ }
253
+ declare module "ace/snippets/maze.snippets" {
254
+ const _exports: string;
255
+ export = _exports;
256
+ }
257
+ declare module "ace/snippets/maze" {
258
+ export const snippetText: string;
259
+ export const scope: "maze";
260
+ }
261
+ declare module "ace/snippets/perl.snippets" {
262
+ const _exports: string;
263
+ export = _exports;
264
+ }
265
+ declare module "ace/snippets/perl" {
266
+ export const snippetText: string;
267
+ export const scope: "perl";
268
+ }
269
+ declare module "ace/snippets/php.snippets" {
270
+ const _exports: string;
271
+ export = _exports;
272
+ }
273
+ declare module "ace/snippets/php" {
274
+ export const snippetText: string;
275
+ export const scope: "php";
276
+ }
277
+ declare module "ace/snippets/python.snippets" {
278
+ const _exports: string;
279
+ export = _exports;
280
+ }
281
+ declare module "ace/snippets/python" {
282
+ export const snippetText: string;
283
+ export const scope: "python";
284
+ }
285
+ declare module "ace/snippets/r.snippets" {
286
+ const _exports: string;
287
+ export = _exports;
288
+ }
289
+ declare module "ace/snippets/r" {
290
+ export const snippetText: string;
291
+ export const scope: "r";
292
+ }
293
+ declare module "ace/snippets/razor.snippets" {
294
+ const _exports: string;
295
+ export = _exports;
296
+ }
297
+ declare module "ace/snippets/razor" {
298
+ export const snippetText: string;
299
+ export const scope: "razor";
300
+ }
301
+ declare module "ace/snippets/robot.snippets" {
302
+ const _exports: string;
303
+ export = _exports;
304
+ }
305
+ declare module "ace/snippets/robot" {
306
+ export const snippetText: string;
307
+ export const scope: "robot";
308
+ }
309
+ declare module "ace/snippets/rst.snippets" {
310
+ const _exports: string;
311
+ export = _exports;
312
+ }
313
+ declare module "ace/snippets/rst" {
314
+ export const snippetText: string;
315
+ export const scope: "rst";
316
+ }
317
+ declare module "ace/snippets/ruby.snippets" {
318
+ const _exports: string;
319
+ export = _exports;
320
+ }
321
+ declare module "ace/snippets/ruby" {
322
+ export const snippetText: string;
323
+ export const scope: "ruby";
324
+ }
325
+ declare module "ace/snippets/sh.snippets" {
326
+ const _exports: string;
327
+ export = _exports;
328
+ }
329
+ declare module "ace/snippets/sh" {
330
+ export const snippetText: string;
331
+ export const scope: "sh";
332
+ }
333
+ declare module "ace/snippets/snippets.snippets" {
334
+ const _exports: string;
335
+ export = _exports;
336
+ }
337
+ declare module "ace/snippets/snippets" {
338
+ export const snippetText: string;
339
+ export const scope: "snippets";
340
+ }
341
+ declare module "ace/snippets/sql.snippets" {
342
+ const _exports: string;
343
+ export = _exports;
344
+ }
345
+ declare module "ace/snippets/sql" {
346
+ export const snippetText: string;
347
+ export const scope: "sql";
348
+ }
349
+ declare module "ace/snippets/sqlserver.snippets" {
350
+ const _exports: string;
351
+ export = _exports;
352
+ }
353
+ declare module "ace/snippets/sqlserver" {
354
+ export const snippetText: string;
355
+ export const scope: "sqlserver";
356
+ }
357
+ declare module "ace/snippets/tcl.snippets" {
358
+ const _exports: string;
359
+ export = _exports;
360
+ }
361
+ declare module "ace/snippets/tcl" {
362
+ export const snippetText: string;
363
+ export const scope: "tcl";
364
+ }
365
+ declare module "ace/snippets/tex.snippets" {
366
+ const _exports: string;
367
+ export = _exports;
368
+ }
369
+ declare module "ace/snippets/tex" {
370
+ export const snippetText: string;
371
+ export const scope: "tex";
372
+ }
373
+ declare module "ace/snippets/textile.snippets" {
374
+ const _exports: string;
375
+ export = _exports;
376
+ }
377
+ declare module "ace/snippets/textile" {
378
+ export const snippetText: string;
379
+ export const scope: "textile";
380
+ }
381
+ declare module "ace/snippets/vala" {
382
+ export const snippets: {
383
+ content: string;
384
+ name: string;
385
+ scope: string;
386
+ tabTrigger: string;
387
+ }[];
388
+ export const scope: "";
389
+ }
390
+ declare module "ace/snippets/velocity.snippets" {
391
+ const _exports: string;
392
+ export = _exports;
393
+ }
394
+ declare module "ace/snippets/velocity" {
395
+ export const snippetText: string;
396
+ export const scope: "velocity";
397
+ export const includeScopes: string[];
398
+ }
399
+ declare module "ace/snippets/wollok.snippets" {
400
+ const _exports: string;
401
+ export = _exports;
402
+ }
403
+ declare module "ace/snippets/wollok" {
404
+ export const snippetText: string;
405
+ export const scope: "wollok";
406
+ }