@univerjs/sheets-formula-ui 0.3.0-nightly.202410101606

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 (156) hide show
  1. package/README.md +39 -0
  2. package/lib/cjs/index.js +1 -0
  3. package/lib/es/index.js +1 -0
  4. package/lib/index.css +1 -0
  5. package/lib/locale/en-US.json +10987 -0
  6. package/lib/locale/ru-RU.json +10938 -0
  7. package/lib/locale/vi-VN.json +9511 -0
  8. package/lib/locale/zh-CN.json +10987 -0
  9. package/lib/locale/zh-TW.json +10987 -0
  10. package/lib/types/commands/commands/formula-clipboard.command.d.ts +2 -0
  11. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +13 -0
  12. package/lib/types/commands/operations/__tests__/insert-function.operation.spec.d.ts +16 -0
  13. package/lib/types/commands/operations/editor-formula.operation.d.ts +11 -0
  14. package/lib/types/commands/operations/help-function.operation.d.ts +2 -0
  15. package/lib/types/commands/operations/insert-function.operation.d.ts +19 -0
  16. package/lib/types/commands/operations/more-functions.operation.d.ts +2 -0
  17. package/lib/types/commands/operations/reference-absolute.operation.d.ts +2 -0
  18. package/lib/types/commands/operations/search-function.operation.d.ts +2 -0
  19. package/lib/types/common/plugin-name.d.ts +16 -0
  20. package/lib/types/common/prompt.d.ts +16 -0
  21. package/lib/types/common/selection.d.ts +4 -0
  22. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +7 -0
  23. package/lib/types/controllers/__tests__/formula-auto-fill.controller.spec.d.ts +16 -0
  24. package/lib/types/controllers/__tests__/formula-clipboard.controller.spec.d.ts +16 -0
  25. package/lib/types/controllers/__tests__/update-formula.controller.spec.d.ts +16 -0
  26. package/lib/types/controllers/config.schema.d.ts +15 -0
  27. package/lib/types/controllers/formula-alert-render.controller.d.ts +15 -0
  28. package/lib/types/controllers/formula-auto-fill.controller.d.ts +10 -0
  29. package/lib/types/controllers/formula-clipboard.controller.d.ts +25 -0
  30. package/lib/types/controllers/formula-editor-show.controller.d.ts +28 -0
  31. package/lib/types/controllers/formula-process.controller.d.ts +15 -0
  32. package/lib/types/controllers/formula-render.controller.d.ts +6 -0
  33. package/lib/types/controllers/formula-ui.controller.d.ts +19 -0
  34. package/lib/types/controllers/menu.d.ts +5 -0
  35. package/lib/types/controllers/menu.schema.d.ts +2 -0
  36. package/lib/types/controllers/prompt.controller.d.ts +170 -0
  37. package/lib/types/controllers/shortcuts/prompt.shortcut.d.ts +9 -0
  38. package/lib/types/controllers/utils/__tests__/offset-formula-data.spec.d.ts +16 -0
  39. package/lib/types/controllers/utils/__tests__/ref-range-formula.spec.d.ts +16 -0
  40. package/lib/types/controllers/utils/__tests__/utils.spec.d.ts +16 -0
  41. package/lib/types/controllers/utils/offset-formula-data.d.ts +15 -0
  42. package/lib/types/controllers/utils/ref-range-formula.d.ts +71 -0
  43. package/lib/types/controllers/utils/utils.d.ts +15 -0
  44. package/lib/types/index.d.ts +25 -0
  45. package/lib/types/locale/en-US.d.ts +9983 -0
  46. package/lib/types/locale/function-list/array/en-US.d.ts +17 -0
  47. package/lib/types/locale/function-list/array/ja-JP.d.ts +17 -0
  48. package/lib/types/locale/function-list/array/ru-RU.d.ts +2 -0
  49. package/lib/types/locale/function-list/array/vi-VN.d.ts +17 -0
  50. package/lib/types/locale/function-list/array/zh-CN.d.ts +17 -0
  51. package/lib/types/locale/function-list/array/zh-TW.d.ts +17 -0
  52. package/lib/types/locale/function-list/compatibility/en-US.d.ts +762 -0
  53. package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +762 -0
  54. package/lib/types/locale/function-list/compatibility/ru-RU.d.ts +2 -0
  55. package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +762 -0
  56. package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +762 -0
  57. package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +762 -0
  58. package/lib/types/locale/function-list/cube/en-US.d.ts +144 -0
  59. package/lib/types/locale/function-list/cube/ja-JP.d.ts +144 -0
  60. package/lib/types/locale/function-list/cube/ru-RU.d.ts +144 -0
  61. package/lib/types/locale/function-list/cube/vi-VN.d.ts +144 -0
  62. package/lib/types/locale/function-list/cube/zh-CN.d.ts +144 -0
  63. package/lib/types/locale/function-list/cube/zh-TW.d.ts +144 -0
  64. package/lib/types/locale/function-list/database/en-US.d.ts +234 -0
  65. package/lib/types/locale/function-list/database/ja-JP.d.ts +234 -0
  66. package/lib/types/locale/function-list/database/ru-RU.d.ts +234 -0
  67. package/lib/types/locale/function-list/database/vi-VN.d.ts +234 -0
  68. package/lib/types/locale/function-list/database/zh-CN.d.ts +234 -0
  69. package/lib/types/locale/function-list/database/zh-TW.d.ts +234 -0
  70. package/lib/types/locale/function-list/date/en-US.d.ts +458 -0
  71. package/lib/types/locale/function-list/date/ja-JP.d.ts +458 -0
  72. package/lib/types/locale/function-list/date/ru-RU.d.ts +2 -0
  73. package/lib/types/locale/function-list/date/vi-VN.d.ts +458 -0
  74. package/lib/types/locale/function-list/date/zh-CN.d.ts +458 -0
  75. package/lib/types/locale/function-list/date/zh-TW.d.ts +458 -0
  76. package/lib/types/locale/function-list/engineering/en-US.d.ts +894 -0
  77. package/lib/types/locale/function-list/engineering/ja-JP.d.ts +894 -0
  78. package/lib/types/locale/function-list/engineering/ru-RU.d.ts +2 -0
  79. package/lib/types/locale/function-list/engineering/vi-VN.d.ts +894 -0
  80. package/lib/types/locale/function-list/engineering/zh-CN.d.ts +894 -0
  81. package/lib/types/locale/function-list/engineering/zh-TW.d.ts +894 -0
  82. package/lib/types/locale/function-list/financial/en-US.d.ts +1608 -0
  83. package/lib/types/locale/function-list/financial/ja-JP.d.ts +1608 -0
  84. package/lib/types/locale/function-list/financial/ru-RU.d.ts +2 -0
  85. package/lib/types/locale/function-list/financial/vi-VN.d.ts +1608 -0
  86. package/lib/types/locale/function-list/financial/zh-CN.d.ts +1608 -0
  87. package/lib/types/locale/function-list/financial/zh-TW.d.ts +1608 -0
  88. package/lib/types/locale/function-list/information/en-US.d.ts +327 -0
  89. package/lib/types/locale/function-list/information/ja-JP.d.ts +327 -0
  90. package/lib/types/locale/function-list/information/ru-RU.d.ts +2 -0
  91. package/lib/types/locale/function-list/information/vi-VN.d.ts +255 -0
  92. package/lib/types/locale/function-list/information/zh-CN.d.ts +327 -0
  93. package/lib/types/locale/function-list/information/zh-TW.d.ts +327 -0
  94. package/lib/types/locale/function-list/logical/en-US.d.ts +390 -0
  95. package/lib/types/locale/function-list/logical/ja-JP.d.ts +390 -0
  96. package/lib/types/locale/function-list/logical/ru-RU.d.ts +2 -0
  97. package/lib/types/locale/function-list/logical/vi-VN.d.ts +390 -0
  98. package/lib/types/locale/function-list/logical/zh-CN.d.ts +390 -0
  99. package/lib/types/locale/function-list/logical/zh-TW.d.ts +390 -0
  100. package/lib/types/locale/function-list/lookup/en-US.d.ts +812 -0
  101. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +812 -0
  102. package/lib/types/locale/function-list/lookup/ru-RU.d.ts +2 -0
  103. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +722 -0
  104. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +812 -0
  105. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +812 -0
  106. package/lib/types/locale/function-list/math/en-US.d.ts +1388 -0
  107. package/lib/types/locale/function-list/math/ja-JP.d.ts +1388 -0
  108. package/lib/types/locale/function-list/math/ru-RU.d.ts +2 -0
  109. package/lib/types/locale/function-list/math/vi-VN.d.ts +1298 -0
  110. package/lib/types/locale/function-list/math/zh-CN.d.ts +1388 -0
  111. package/lib/types/locale/function-list/math/zh-TW.d.ts +1388 -0
  112. package/lib/types/locale/function-list/statistical/en-US.d.ts +2160 -0
  113. package/lib/types/locale/function-list/statistical/ja-JP.d.ts +2160 -0
  114. package/lib/types/locale/function-list/statistical/ru-RU.d.ts +2 -0
  115. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +1188 -0
  116. package/lib/types/locale/function-list/statistical/zh-CN.d.ts +2160 -0
  117. package/lib/types/locale/function-list/statistical/zh-TW.d.ts +2160 -0
  118. package/lib/types/locale/function-list/text/en-US.d.ts +904 -0
  119. package/lib/types/locale/function-list/text/ja-JP.d.ts +905 -0
  120. package/lib/types/locale/function-list/text/ru-RU.d.ts +856 -0
  121. package/lib/types/locale/function-list/text/vi-VN.d.ts +784 -0
  122. package/lib/types/locale/function-list/text/zh-CN.d.ts +904 -0
  123. package/lib/types/locale/function-list/text/zh-TW.d.ts +904 -0
  124. package/lib/types/locale/function-list/univer/en-US.d.ts +17 -0
  125. package/lib/types/locale/function-list/univer/ja-JP.d.ts +17 -0
  126. package/lib/types/locale/function-list/univer/ru-RU.d.ts +17 -0
  127. package/lib/types/locale/function-list/univer/vi-VN.d.ts +17 -0
  128. package/lib/types/locale/function-list/univer/zh-CN.d.ts +17 -0
  129. package/lib/types/locale/function-list/univer/zh-TW.d.ts +17 -0
  130. package/lib/types/locale/function-list/web/en-US.d.ts +72 -0
  131. package/lib/types/locale/function-list/web/ja-JP.d.ts +72 -0
  132. package/lib/types/locale/function-list/web/ru-RU.d.ts +72 -0
  133. package/lib/types/locale/function-list/web/vi-VN.d.ts +2 -0
  134. package/lib/types/locale/function-list/web/zh-CN.d.ts +72 -0
  135. package/lib/types/locale/function-list/web/zh-TW.d.ts +72 -0
  136. package/lib/types/locale/ru-RU.d.ts +9934 -0
  137. package/lib/types/locale/vi-VN.d.ts +8657 -0
  138. package/lib/types/locale/zh-CN.d.ts +9983 -0
  139. package/lib/types/locale/zh-TW.d.ts +9983 -0
  140. package/lib/types/services/formula-common.d.ts +18 -0
  141. package/lib/types/services/prompt.service.d.ts +160 -0
  142. package/lib/types/services/render-services/ref-selections.render-service.d.ts +42 -0
  143. package/lib/types/services/utils.d.ts +8 -0
  144. package/lib/types/sheets-formula-ui.plugin.d.ts +19 -0
  145. package/lib/types/views/FormulaPromptContainer.d.ts +2 -0
  146. package/lib/types/views/more-functions/MoreFunctions.d.ts +2 -0
  147. package/lib/types/views/more-functions/function-help/FunctionHelp.d.ts +22 -0
  148. package/lib/types/views/more-functions/function-params/FunctionParams.d.ts +8 -0
  149. package/lib/types/views/more-functions/input-params/InputParams.d.ts +7 -0
  150. package/lib/types/views/more-functions/interface.d.ts +16 -0
  151. package/lib/types/views/more-functions/select-function/SelectFunction.d.ts +6 -0
  152. package/lib/types/views/prompt/help-function/HelpFunction.d.ts +2 -0
  153. package/lib/types/views/prompt/resize-scroll-observer.d.ts +18 -0
  154. package/lib/types/views/prompt/search-function/SearchFunction.d.ts +2 -0
  155. package/lib/umd/index.js +1 -0
  156. package/package.json +113 -0
@@ -0,0 +1,904 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ declare const _default: {
17
+ ASC: {
18
+ description: string;
19
+ abstract: string;
20
+ links: {
21
+ title: string;
22
+ url: string;
23
+ }[];
24
+ functionParameter: {
25
+ number1: {
26
+ name: string;
27
+ detail: string;
28
+ };
29
+ number2: {
30
+ name: string;
31
+ detail: string;
32
+ };
33
+ };
34
+ };
35
+ ARRAYTOTEXT: {
36
+ description: string;
37
+ abstract: string;
38
+ links: {
39
+ title: string;
40
+ url: string;
41
+ }[];
42
+ functionParameter: {
43
+ number1: {
44
+ name: string;
45
+ detail: string;
46
+ };
47
+ number2: {
48
+ name: string;
49
+ detail: string;
50
+ };
51
+ };
52
+ };
53
+ BAHTTEXT: {
54
+ description: string;
55
+ abstract: string;
56
+ links: {
57
+ title: string;
58
+ url: string;
59
+ }[];
60
+ functionParameter: {
61
+ number1: {
62
+ name: string;
63
+ detail: string;
64
+ };
65
+ number2: {
66
+ name: string;
67
+ detail: string;
68
+ };
69
+ };
70
+ };
71
+ CHAR: {
72
+ description: string;
73
+ abstract: string;
74
+ links: {
75
+ title: string;
76
+ url: string;
77
+ }[];
78
+ functionParameter: {
79
+ number1: {
80
+ name: string;
81
+ detail: string;
82
+ };
83
+ number2: {
84
+ name: string;
85
+ detail: string;
86
+ };
87
+ };
88
+ };
89
+ CLEAN: {
90
+ description: string;
91
+ abstract: string;
92
+ links: {
93
+ title: string;
94
+ url: string;
95
+ }[];
96
+ functionParameter: {
97
+ number1: {
98
+ name: string;
99
+ detail: string;
100
+ };
101
+ number2: {
102
+ name: string;
103
+ detail: string;
104
+ };
105
+ };
106
+ };
107
+ CODE: {
108
+ description: string;
109
+ abstract: string;
110
+ links: {
111
+ title: string;
112
+ url: string;
113
+ }[];
114
+ functionParameter: {
115
+ number1: {
116
+ name: string;
117
+ detail: string;
118
+ };
119
+ number2: {
120
+ name: string;
121
+ detail: string;
122
+ };
123
+ };
124
+ };
125
+ CONCAT: {
126
+ description: string;
127
+ abstract: string;
128
+ links: {
129
+ title: string;
130
+ url: string;
131
+ }[];
132
+ functionParameter: {
133
+ text1: {
134
+ name: string;
135
+ detail: string;
136
+ };
137
+ text2: {
138
+ name: string;
139
+ detail: string;
140
+ };
141
+ };
142
+ };
143
+ CONCATENATE: {
144
+ description: string;
145
+ abstract: string;
146
+ links: {
147
+ title: string;
148
+ url: string;
149
+ }[];
150
+ functionParameter: {
151
+ text1: {
152
+ name: string;
153
+ detail: string;
154
+ };
155
+ text2: {
156
+ name: string;
157
+ detail: string;
158
+ };
159
+ };
160
+ };
161
+ DBCS: {
162
+ description: string;
163
+ abstract: string;
164
+ links: {
165
+ title: string;
166
+ url: string;
167
+ }[];
168
+ functionParameter: {
169
+ number1: {
170
+ name: string;
171
+ detail: string;
172
+ };
173
+ number2: {
174
+ name: string;
175
+ detail: string;
176
+ };
177
+ };
178
+ };
179
+ DOLLAR: {
180
+ description: string;
181
+ abstract: string;
182
+ links: {
183
+ title: string;
184
+ url: string;
185
+ }[];
186
+ functionParameter: {
187
+ number1: {
188
+ name: string;
189
+ detail: string;
190
+ };
191
+ number2: {
192
+ name: string;
193
+ detail: string;
194
+ };
195
+ };
196
+ };
197
+ EXACT: {
198
+ description: string;
199
+ abstract: string;
200
+ links: {
201
+ title: string;
202
+ url: string;
203
+ }[];
204
+ functionParameter: {
205
+ number1: {
206
+ name: string;
207
+ detail: string;
208
+ };
209
+ number2: {
210
+ name: string;
211
+ detail: string;
212
+ };
213
+ };
214
+ };
215
+ FIND: {
216
+ description: string;
217
+ abstract: string;
218
+ links: {
219
+ title: string;
220
+ url: string;
221
+ }[];
222
+ functionParameter: {
223
+ number1: {
224
+ name: string;
225
+ detail: string;
226
+ };
227
+ number2: {
228
+ name: string;
229
+ detail: string;
230
+ };
231
+ };
232
+ };
233
+ FINDB: {
234
+ description: string;
235
+ abstract: string;
236
+ links: {
237
+ title: string;
238
+ url: string;
239
+ }[];
240
+ functionParameter: {
241
+ number1: {
242
+ name: string;
243
+ detail: string;
244
+ };
245
+ number2: {
246
+ name: string;
247
+ detail: string;
248
+ };
249
+ };
250
+ };
251
+ FIXED: {
252
+ description: string;
253
+ abstract: string;
254
+ links: {
255
+ title: string;
256
+ url: string;
257
+ }[];
258
+ functionParameter: {
259
+ number1: {
260
+ name: string;
261
+ detail: string;
262
+ };
263
+ number2: {
264
+ name: string;
265
+ detail: string;
266
+ };
267
+ };
268
+ };
269
+ LEFT: {
270
+ description: string;
271
+ abstract: string;
272
+ links: {
273
+ title: string;
274
+ url: string;
275
+ }[];
276
+ functionParameter: {
277
+ number1: {
278
+ name: string;
279
+ detail: string;
280
+ };
281
+ number2: {
282
+ name: string;
283
+ detail: string;
284
+ };
285
+ };
286
+ };
287
+ LEFTB: {
288
+ description: string;
289
+ abstract: string;
290
+ links: {
291
+ title: string;
292
+ url: string;
293
+ }[];
294
+ functionParameter: {
295
+ text: {
296
+ name: string;
297
+ detail: string;
298
+ };
299
+ numBytes: {
300
+ name: string;
301
+ detail: string;
302
+ };
303
+ };
304
+ };
305
+ LEN: {
306
+ description: string;
307
+ abstract: string;
308
+ links: {
309
+ title: string;
310
+ url: string;
311
+ }[];
312
+ functionParameter: {
313
+ text: {
314
+ name: string;
315
+ detail: string;
316
+ };
317
+ };
318
+ };
319
+ LENB: {
320
+ description: string;
321
+ abstract: string;
322
+ links: {
323
+ title: string;
324
+ url: string;
325
+ }[];
326
+ functionParameter: {
327
+ text: {
328
+ name: string;
329
+ detail: string;
330
+ };
331
+ };
332
+ };
333
+ LOWER: {
334
+ description: string;
335
+ abstract: string;
336
+ links: {
337
+ title: string;
338
+ url: string;
339
+ }[];
340
+ functionParameter: {
341
+ text: {
342
+ name: string;
343
+ detail: string;
344
+ };
345
+ };
346
+ };
347
+ MID: {
348
+ description: string;
349
+ abstract: string;
350
+ links: {
351
+ title: string;
352
+ url: string;
353
+ }[];
354
+ functionParameter: {
355
+ text: {
356
+ name: string;
357
+ detail: string;
358
+ };
359
+ startNum: {
360
+ name: string;
361
+ detail: string;
362
+ };
363
+ numChars: {
364
+ name: string;
365
+ detail: string;
366
+ };
367
+ };
368
+ };
369
+ MIDB: {
370
+ description: string;
371
+ abstract: string;
372
+ links: {
373
+ title: string;
374
+ url: string;
375
+ }[];
376
+ functionParameter: {
377
+ number1: {
378
+ name: string;
379
+ detail: string;
380
+ };
381
+ number2: {
382
+ name: string;
383
+ detail: string;
384
+ };
385
+ };
386
+ };
387
+ NUMBERVALUE: {
388
+ description: string;
389
+ abstract: string;
390
+ links: {
391
+ title: string;
392
+ url: string;
393
+ }[];
394
+ functionParameter: {
395
+ number1: {
396
+ name: string;
397
+ detail: string;
398
+ };
399
+ number2: {
400
+ name: string;
401
+ detail: string;
402
+ };
403
+ };
404
+ };
405
+ PHONETIC: {
406
+ description: string;
407
+ abstract: string;
408
+ links: {
409
+ title: string;
410
+ url: string;
411
+ }[];
412
+ functionParameter: {
413
+ number1: {
414
+ name: string;
415
+ detail: string;
416
+ };
417
+ number2: {
418
+ name: string;
419
+ detail: string;
420
+ };
421
+ };
422
+ };
423
+ PROPER: {
424
+ description: string;
425
+ abstract: string;
426
+ links: {
427
+ title: string;
428
+ url: string;
429
+ }[];
430
+ functionParameter: {
431
+ number1: {
432
+ name: string;
433
+ detail: string;
434
+ };
435
+ number2: {
436
+ name: string;
437
+ detail: string;
438
+ };
439
+ };
440
+ };
441
+ REPLACE: {
442
+ description: string;
443
+ abstract: string;
444
+ links: {
445
+ title: string;
446
+ url: string;
447
+ }[];
448
+ functionParameter: {
449
+ number1: {
450
+ name: string;
451
+ detail: string;
452
+ };
453
+ number2: {
454
+ name: string;
455
+ detail: string;
456
+ };
457
+ };
458
+ };
459
+ REPLACEB: {
460
+ description: string;
461
+ abstract: string;
462
+ links: {
463
+ title: string;
464
+ url: string;
465
+ }[];
466
+ functionParameter: {
467
+ number1: {
468
+ name: string;
469
+ detail: string;
470
+ };
471
+ number2: {
472
+ name: string;
473
+ detail: string;
474
+ };
475
+ };
476
+ };
477
+ REPT: {
478
+ description: string;
479
+ abstract: string;
480
+ links: {
481
+ title: string;
482
+ url: string;
483
+ }[];
484
+ functionParameter: {
485
+ text: {
486
+ name: string;
487
+ detail: string;
488
+ };
489
+ numberTimes: {
490
+ name: string;
491
+ detail: string;
492
+ };
493
+ };
494
+ };
495
+ RIGHT: {
496
+ description: string;
497
+ abstract: string;
498
+ links: {
499
+ title: string;
500
+ url: string;
501
+ }[];
502
+ functionParameter: {
503
+ number1: {
504
+ name: string;
505
+ detail: string;
506
+ };
507
+ number2: {
508
+ name: string;
509
+ detail: string;
510
+ };
511
+ };
512
+ };
513
+ RIGHTB: {
514
+ description: string;
515
+ abstract: string;
516
+ links: {
517
+ title: string;
518
+ url: string;
519
+ }[];
520
+ functionParameter: {
521
+ number1: {
522
+ name: string;
523
+ detail: string;
524
+ };
525
+ number2: {
526
+ name: string;
527
+ detail: string;
528
+ };
529
+ };
530
+ };
531
+ SEARCH: {
532
+ description: string;
533
+ abstract: string;
534
+ links: {
535
+ title: string;
536
+ url: string;
537
+ }[];
538
+ functionParameter: {
539
+ number1: {
540
+ name: string;
541
+ detail: string;
542
+ };
543
+ number2: {
544
+ name: string;
545
+ detail: string;
546
+ };
547
+ };
548
+ };
549
+ SEARCHB: {
550
+ description: string;
551
+ abstract: string;
552
+ links: {
553
+ title: string;
554
+ url: string;
555
+ }[];
556
+ functionParameter: {
557
+ number1: {
558
+ name: string;
559
+ detail: string;
560
+ };
561
+ number2: {
562
+ name: string;
563
+ detail: string;
564
+ };
565
+ };
566
+ };
567
+ SUBSTITUTE: {
568
+ description: string;
569
+ abstract: string;
570
+ links: {
571
+ title: string;
572
+ url: string;
573
+ }[];
574
+ functionParameter: {
575
+ number1: {
576
+ name: string;
577
+ detail: string;
578
+ };
579
+ number2: {
580
+ name: string;
581
+ detail: string;
582
+ };
583
+ };
584
+ };
585
+ T: {
586
+ description: string;
587
+ abstract: string;
588
+ links: {
589
+ title: string;
590
+ url: string;
591
+ }[];
592
+ functionParameter: {
593
+ number1: {
594
+ name: string;
595
+ detail: string;
596
+ };
597
+ number2: {
598
+ name: string;
599
+ detail: string;
600
+ };
601
+ };
602
+ };
603
+ TEXT: {
604
+ description: string;
605
+ abstract: string;
606
+ links: {
607
+ title: string;
608
+ url: string;
609
+ }[];
610
+ functionParameter: {
611
+ value: {
612
+ name: string;
613
+ detail: string;
614
+ };
615
+ formatText: {
616
+ name: string;
617
+ detail: string;
618
+ };
619
+ };
620
+ };
621
+ TEXTAFTER: {
622
+ description: string;
623
+ abstract: string;
624
+ links: {
625
+ title: string;
626
+ url: string;
627
+ }[];
628
+ functionParameter: {
629
+ text: {
630
+ name: string;
631
+ detail: string;
632
+ };
633
+ delimiter: {
634
+ name: string;
635
+ detail: string;
636
+ };
637
+ instanceNum: {
638
+ name: string;
639
+ detail: string;
640
+ };
641
+ matchMode: {
642
+ name: string;
643
+ detail: string;
644
+ };
645
+ matchEnd: {
646
+ name: string;
647
+ detail: string;
648
+ };
649
+ ifNotFound: {
650
+ name: string;
651
+ detail: string;
652
+ };
653
+ };
654
+ };
655
+ TEXTBEFORE: {
656
+ description: string;
657
+ abstract: string;
658
+ links: {
659
+ title: string;
660
+ url: string;
661
+ }[];
662
+ functionParameter: {
663
+ text: {
664
+ name: string;
665
+ detail: string;
666
+ };
667
+ delimiter: {
668
+ name: string;
669
+ detail: string;
670
+ };
671
+ instanceNum: {
672
+ name: string;
673
+ detail: string;
674
+ };
675
+ matchMode: {
676
+ name: string;
677
+ detail: string;
678
+ };
679
+ matchEnd: {
680
+ name: string;
681
+ detail: string;
682
+ };
683
+ ifNotFound: {
684
+ name: string;
685
+ detail: string;
686
+ };
687
+ };
688
+ };
689
+ TEXTJOIN: {
690
+ description: string;
691
+ abstract: string;
692
+ links: {
693
+ title: string;
694
+ url: string;
695
+ }[];
696
+ functionParameter: {
697
+ number1: {
698
+ name: string;
699
+ detail: string;
700
+ };
701
+ number2: {
702
+ name: string;
703
+ detail: string;
704
+ };
705
+ };
706
+ };
707
+ TEXTSPLIT: {
708
+ description: string;
709
+ abstract: string;
710
+ links: {
711
+ title: string;
712
+ url: string;
713
+ }[];
714
+ functionParameter: {
715
+ text: {
716
+ name: string;
717
+ detail: string;
718
+ };
719
+ colDelimiter: {
720
+ name: string;
721
+ detail: string;
722
+ };
723
+ rowDelimiter: {
724
+ name: string;
725
+ detail: string;
726
+ };
727
+ ignoreEmpty: {
728
+ name: string;
729
+ detail: string;
730
+ };
731
+ matchMode: {
732
+ name: string;
733
+ detail: string;
734
+ };
735
+ padWith: {
736
+ name: string;
737
+ detail: string;
738
+ };
739
+ };
740
+ };
741
+ TRIM: {
742
+ description: string;
743
+ abstract: string;
744
+ links: {
745
+ title: string;
746
+ url: string;
747
+ }[];
748
+ functionParameter: {
749
+ number1: {
750
+ name: string;
751
+ detail: string;
752
+ };
753
+ number2: {
754
+ name: string;
755
+ detail: string;
756
+ };
757
+ };
758
+ };
759
+ UNICHAR: {
760
+ description: string;
761
+ abstract: string;
762
+ links: {
763
+ title: string;
764
+ url: string;
765
+ }[];
766
+ functionParameter: {
767
+ number1: {
768
+ name: string;
769
+ detail: string;
770
+ };
771
+ number2: {
772
+ name: string;
773
+ detail: string;
774
+ };
775
+ };
776
+ };
777
+ UNICODE: {
778
+ description: string;
779
+ abstract: string;
780
+ links: {
781
+ title: string;
782
+ url: string;
783
+ }[];
784
+ functionParameter: {
785
+ number1: {
786
+ name: string;
787
+ detail: string;
788
+ };
789
+ number2: {
790
+ name: string;
791
+ detail: string;
792
+ };
793
+ };
794
+ };
795
+ UPPER: {
796
+ description: string;
797
+ abstract: string;
798
+ links: {
799
+ title: string;
800
+ url: string;
801
+ }[];
802
+ functionParameter: {
803
+ number1: {
804
+ name: string;
805
+ detail: string;
806
+ };
807
+ number2: {
808
+ name: string;
809
+ detail: string;
810
+ };
811
+ };
812
+ };
813
+ VALUE: {
814
+ description: string;
815
+ abstract: string;
816
+ links: {
817
+ title: string;
818
+ url: string;
819
+ }[];
820
+ functionParameter: {
821
+ number1: {
822
+ name: string;
823
+ detail: string;
824
+ };
825
+ number2: {
826
+ name: string;
827
+ detail: string;
828
+ };
829
+ };
830
+ };
831
+ VALUETOTEXT: {
832
+ description: string;
833
+ abstract: string;
834
+ links: {
835
+ title: string;
836
+ url: string;
837
+ }[];
838
+ functionParameter: {
839
+ number1: {
840
+ name: string;
841
+ detail: string;
842
+ };
843
+ number2: {
844
+ name: string;
845
+ detail: string;
846
+ };
847
+ };
848
+ };
849
+ CALL: {
850
+ description: string;
851
+ abstract: string;
852
+ links: {
853
+ title: string;
854
+ url: string;
855
+ }[];
856
+ functionParameter: {
857
+ number1: {
858
+ name: string;
859
+ detail: string;
860
+ };
861
+ number2: {
862
+ name: string;
863
+ detail: string;
864
+ };
865
+ };
866
+ };
867
+ EUROCONVERT: {
868
+ description: string;
869
+ abstract: string;
870
+ links: {
871
+ title: string;
872
+ url: string;
873
+ }[];
874
+ functionParameter: {
875
+ number1: {
876
+ name: string;
877
+ detail: string;
878
+ };
879
+ number2: {
880
+ name: string;
881
+ detail: string;
882
+ };
883
+ };
884
+ };
885
+ REGISTER_ID: {
886
+ description: string;
887
+ abstract: string;
888
+ links: {
889
+ title: string;
890
+ url: string;
891
+ }[];
892
+ functionParameter: {
893
+ number1: {
894
+ name: string;
895
+ detail: string;
896
+ };
897
+ number2: {
898
+ name: string;
899
+ detail: string;
900
+ };
901
+ };
902
+ };
903
+ };
904
+ export default _default;