@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,905 @@
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
+ aliasFunctionName: string;
181
+ description: string;
182
+ abstract: string;
183
+ links: {
184
+ title: string;
185
+ url: string;
186
+ }[];
187
+ functionParameter: {
188
+ number1: {
189
+ name: string;
190
+ detail: string;
191
+ };
192
+ number2: {
193
+ name: string;
194
+ detail: string;
195
+ };
196
+ };
197
+ };
198
+ EXACT: {
199
+ description: string;
200
+ abstract: string;
201
+ links: {
202
+ title: string;
203
+ url: string;
204
+ }[];
205
+ functionParameter: {
206
+ number1: {
207
+ name: string;
208
+ detail: string;
209
+ };
210
+ number2: {
211
+ name: string;
212
+ detail: string;
213
+ };
214
+ };
215
+ };
216
+ FIND: {
217
+ description: string;
218
+ abstract: string;
219
+ links: {
220
+ title: string;
221
+ url: string;
222
+ }[];
223
+ functionParameter: {
224
+ number1: {
225
+ name: string;
226
+ detail: string;
227
+ };
228
+ number2: {
229
+ name: string;
230
+ detail: string;
231
+ };
232
+ };
233
+ };
234
+ FINDB: {
235
+ description: string;
236
+ abstract: string;
237
+ links: {
238
+ title: string;
239
+ url: string;
240
+ }[];
241
+ functionParameter: {
242
+ number1: {
243
+ name: string;
244
+ detail: string;
245
+ };
246
+ number2: {
247
+ name: string;
248
+ detail: string;
249
+ };
250
+ };
251
+ };
252
+ FIXED: {
253
+ description: string;
254
+ abstract: string;
255
+ links: {
256
+ title: string;
257
+ url: string;
258
+ }[];
259
+ functionParameter: {
260
+ number1: {
261
+ name: string;
262
+ detail: string;
263
+ };
264
+ number2: {
265
+ name: string;
266
+ detail: string;
267
+ };
268
+ };
269
+ };
270
+ LEFT: {
271
+ description: string;
272
+ abstract: string;
273
+ links: {
274
+ title: string;
275
+ url: string;
276
+ }[];
277
+ functionParameter: {
278
+ number1: {
279
+ name: string;
280
+ detail: string;
281
+ };
282
+ number2: {
283
+ name: string;
284
+ detail: string;
285
+ };
286
+ };
287
+ };
288
+ LEFTB: {
289
+ description: string;
290
+ abstract: string;
291
+ links: {
292
+ title: string;
293
+ url: string;
294
+ }[];
295
+ functionParameter: {
296
+ text: {
297
+ name: string;
298
+ detail: string;
299
+ };
300
+ numBytes: {
301
+ name: string;
302
+ detail: string;
303
+ };
304
+ };
305
+ };
306
+ LEN: {
307
+ description: string;
308
+ abstract: string;
309
+ links: {
310
+ title: string;
311
+ url: string;
312
+ }[];
313
+ functionParameter: {
314
+ text: {
315
+ name: string;
316
+ detail: string;
317
+ };
318
+ };
319
+ };
320
+ LENB: {
321
+ description: string;
322
+ abstract: string;
323
+ links: {
324
+ title: string;
325
+ url: string;
326
+ }[];
327
+ functionParameter: {
328
+ text: {
329
+ name: string;
330
+ detail: string;
331
+ };
332
+ };
333
+ };
334
+ LOWER: {
335
+ description: string;
336
+ abstract: string;
337
+ links: {
338
+ title: string;
339
+ url: string;
340
+ }[];
341
+ functionParameter: {
342
+ text: {
343
+ name: string;
344
+ detail: string;
345
+ };
346
+ };
347
+ };
348
+ MID: {
349
+ description: string;
350
+ abstract: string;
351
+ links: {
352
+ title: string;
353
+ url: string;
354
+ }[];
355
+ functionParameter: {
356
+ text: {
357
+ name: string;
358
+ detail: string;
359
+ };
360
+ startNum: {
361
+ name: string;
362
+ detail: string;
363
+ };
364
+ numChars: {
365
+ name: string;
366
+ detail: string;
367
+ };
368
+ };
369
+ };
370
+ MIDB: {
371
+ description: string;
372
+ abstract: string;
373
+ links: {
374
+ title: string;
375
+ url: string;
376
+ }[];
377
+ functionParameter: {
378
+ number1: {
379
+ name: string;
380
+ detail: string;
381
+ };
382
+ number2: {
383
+ name: string;
384
+ detail: string;
385
+ };
386
+ };
387
+ };
388
+ NUMBERVALUE: {
389
+ description: string;
390
+ abstract: string;
391
+ links: {
392
+ title: string;
393
+ url: string;
394
+ }[];
395
+ functionParameter: {
396
+ number1: {
397
+ name: string;
398
+ detail: string;
399
+ };
400
+ number2: {
401
+ name: string;
402
+ detail: string;
403
+ };
404
+ };
405
+ };
406
+ PHONETIC: {
407
+ description: string;
408
+ abstract: string;
409
+ links: {
410
+ title: string;
411
+ url: string;
412
+ }[];
413
+ functionParameter: {
414
+ number1: {
415
+ name: string;
416
+ detail: string;
417
+ };
418
+ number2: {
419
+ name: string;
420
+ detail: string;
421
+ };
422
+ };
423
+ };
424
+ PROPER: {
425
+ description: string;
426
+ abstract: string;
427
+ links: {
428
+ title: string;
429
+ url: string;
430
+ }[];
431
+ functionParameter: {
432
+ number1: {
433
+ name: string;
434
+ detail: string;
435
+ };
436
+ number2: {
437
+ name: string;
438
+ detail: string;
439
+ };
440
+ };
441
+ };
442
+ REPLACE: {
443
+ description: string;
444
+ abstract: string;
445
+ links: {
446
+ title: string;
447
+ url: string;
448
+ }[];
449
+ functionParameter: {
450
+ number1: {
451
+ name: string;
452
+ detail: string;
453
+ };
454
+ number2: {
455
+ name: string;
456
+ detail: string;
457
+ };
458
+ };
459
+ };
460
+ REPLACEB: {
461
+ description: string;
462
+ abstract: string;
463
+ links: {
464
+ title: string;
465
+ url: string;
466
+ }[];
467
+ functionParameter: {
468
+ number1: {
469
+ name: string;
470
+ detail: string;
471
+ };
472
+ number2: {
473
+ name: string;
474
+ detail: string;
475
+ };
476
+ };
477
+ };
478
+ REPT: {
479
+ description: string;
480
+ abstract: string;
481
+ links: {
482
+ title: string;
483
+ url: string;
484
+ }[];
485
+ functionParameter: {
486
+ text: {
487
+ name: string;
488
+ detail: string;
489
+ };
490
+ numberTimes: {
491
+ name: string;
492
+ detail: string;
493
+ };
494
+ };
495
+ };
496
+ RIGHT: {
497
+ description: string;
498
+ abstract: string;
499
+ links: {
500
+ title: string;
501
+ url: string;
502
+ }[];
503
+ functionParameter: {
504
+ number1: {
505
+ name: string;
506
+ detail: string;
507
+ };
508
+ number2: {
509
+ name: string;
510
+ detail: string;
511
+ };
512
+ };
513
+ };
514
+ RIGHTB: {
515
+ description: string;
516
+ abstract: string;
517
+ links: {
518
+ title: string;
519
+ url: string;
520
+ }[];
521
+ functionParameter: {
522
+ number1: {
523
+ name: string;
524
+ detail: string;
525
+ };
526
+ number2: {
527
+ name: string;
528
+ detail: string;
529
+ };
530
+ };
531
+ };
532
+ SEARCH: {
533
+ description: string;
534
+ abstract: string;
535
+ links: {
536
+ title: string;
537
+ url: string;
538
+ }[];
539
+ functionParameter: {
540
+ number1: {
541
+ name: string;
542
+ detail: string;
543
+ };
544
+ number2: {
545
+ name: string;
546
+ detail: string;
547
+ };
548
+ };
549
+ };
550
+ SEARCHB: {
551
+ description: string;
552
+ abstract: string;
553
+ links: {
554
+ title: string;
555
+ url: string;
556
+ }[];
557
+ functionParameter: {
558
+ number1: {
559
+ name: string;
560
+ detail: string;
561
+ };
562
+ number2: {
563
+ name: string;
564
+ detail: string;
565
+ };
566
+ };
567
+ };
568
+ SUBSTITUTE: {
569
+ description: string;
570
+ abstract: string;
571
+ links: {
572
+ title: string;
573
+ url: string;
574
+ }[];
575
+ functionParameter: {
576
+ number1: {
577
+ name: string;
578
+ detail: string;
579
+ };
580
+ number2: {
581
+ name: string;
582
+ detail: string;
583
+ };
584
+ };
585
+ };
586
+ T: {
587
+ description: string;
588
+ abstract: string;
589
+ links: {
590
+ title: string;
591
+ url: string;
592
+ }[];
593
+ functionParameter: {
594
+ number1: {
595
+ name: string;
596
+ detail: string;
597
+ };
598
+ number2: {
599
+ name: string;
600
+ detail: string;
601
+ };
602
+ };
603
+ };
604
+ TEXT: {
605
+ description: string;
606
+ abstract: string;
607
+ links: {
608
+ title: string;
609
+ url: string;
610
+ }[];
611
+ functionParameter: {
612
+ value: {
613
+ name: string;
614
+ detail: string;
615
+ };
616
+ formatText: {
617
+ name: string;
618
+ detail: string;
619
+ };
620
+ };
621
+ };
622
+ TEXTAFTER: {
623
+ description: string;
624
+ abstract: string;
625
+ links: {
626
+ title: string;
627
+ url: string;
628
+ }[];
629
+ functionParameter: {
630
+ text: {
631
+ name: string;
632
+ detail: string;
633
+ };
634
+ delimiter: {
635
+ name: string;
636
+ detail: string;
637
+ };
638
+ instanceNum: {
639
+ name: string;
640
+ detail: string;
641
+ };
642
+ matchMode: {
643
+ name: string;
644
+ detail: string;
645
+ };
646
+ matchEnd: {
647
+ name: string;
648
+ detail: string;
649
+ };
650
+ ifNotFound: {
651
+ name: string;
652
+ detail: string;
653
+ };
654
+ };
655
+ };
656
+ TEXTBEFORE: {
657
+ description: string;
658
+ abstract: string;
659
+ links: {
660
+ title: string;
661
+ url: string;
662
+ }[];
663
+ functionParameter: {
664
+ text: {
665
+ name: string;
666
+ detail: string;
667
+ };
668
+ delimiter: {
669
+ name: string;
670
+ detail: string;
671
+ };
672
+ instanceNum: {
673
+ name: string;
674
+ detail: string;
675
+ };
676
+ matchMode: {
677
+ name: string;
678
+ detail: string;
679
+ };
680
+ matchEnd: {
681
+ name: string;
682
+ detail: string;
683
+ };
684
+ ifNotFound: {
685
+ name: string;
686
+ detail: string;
687
+ };
688
+ };
689
+ };
690
+ TEXTJOIN: {
691
+ description: string;
692
+ abstract: string;
693
+ links: {
694
+ title: string;
695
+ url: string;
696
+ }[];
697
+ functionParameter: {
698
+ number1: {
699
+ name: string;
700
+ detail: string;
701
+ };
702
+ number2: {
703
+ name: string;
704
+ detail: string;
705
+ };
706
+ };
707
+ };
708
+ TEXTSPLIT: {
709
+ description: string;
710
+ abstract: string;
711
+ links: {
712
+ title: string;
713
+ url: string;
714
+ }[];
715
+ functionParameter: {
716
+ text: {
717
+ name: string;
718
+ detail: string;
719
+ };
720
+ colDelimiter: {
721
+ name: string;
722
+ detail: string;
723
+ };
724
+ rowDelimiter: {
725
+ name: string;
726
+ detail: string;
727
+ };
728
+ ignoreEmpty: {
729
+ name: string;
730
+ detail: string;
731
+ };
732
+ matchMode: {
733
+ name: string;
734
+ detail: string;
735
+ };
736
+ padWith: {
737
+ name: string;
738
+ detail: string;
739
+ };
740
+ };
741
+ };
742
+ TRIM: {
743
+ description: string;
744
+ abstract: string;
745
+ links: {
746
+ title: string;
747
+ url: string;
748
+ }[];
749
+ functionParameter: {
750
+ number1: {
751
+ name: string;
752
+ detail: string;
753
+ };
754
+ number2: {
755
+ name: string;
756
+ detail: string;
757
+ };
758
+ };
759
+ };
760
+ UNICHAR: {
761
+ description: string;
762
+ abstract: string;
763
+ links: {
764
+ title: string;
765
+ url: string;
766
+ }[];
767
+ functionParameter: {
768
+ number1: {
769
+ name: string;
770
+ detail: string;
771
+ };
772
+ number2: {
773
+ name: string;
774
+ detail: string;
775
+ };
776
+ };
777
+ };
778
+ UNICODE: {
779
+ description: string;
780
+ abstract: string;
781
+ links: {
782
+ title: string;
783
+ url: string;
784
+ }[];
785
+ functionParameter: {
786
+ number1: {
787
+ name: string;
788
+ detail: string;
789
+ };
790
+ number2: {
791
+ name: string;
792
+ detail: string;
793
+ };
794
+ };
795
+ };
796
+ UPPER: {
797
+ description: string;
798
+ abstract: string;
799
+ links: {
800
+ title: string;
801
+ url: string;
802
+ }[];
803
+ functionParameter: {
804
+ number1: {
805
+ name: string;
806
+ detail: string;
807
+ };
808
+ number2: {
809
+ name: string;
810
+ detail: string;
811
+ };
812
+ };
813
+ };
814
+ VALUE: {
815
+ description: string;
816
+ abstract: string;
817
+ links: {
818
+ title: string;
819
+ url: string;
820
+ }[];
821
+ functionParameter: {
822
+ number1: {
823
+ name: string;
824
+ detail: string;
825
+ };
826
+ number2: {
827
+ name: string;
828
+ detail: string;
829
+ };
830
+ };
831
+ };
832
+ VALUETOTEXT: {
833
+ description: string;
834
+ abstract: string;
835
+ links: {
836
+ title: string;
837
+ url: string;
838
+ }[];
839
+ functionParameter: {
840
+ number1: {
841
+ name: string;
842
+ detail: string;
843
+ };
844
+ number2: {
845
+ name: string;
846
+ detail: string;
847
+ };
848
+ };
849
+ };
850
+ CALL: {
851
+ description: string;
852
+ abstract: string;
853
+ links: {
854
+ title: string;
855
+ url: string;
856
+ }[];
857
+ functionParameter: {
858
+ number1: {
859
+ name: string;
860
+ detail: string;
861
+ };
862
+ number2: {
863
+ name: string;
864
+ detail: string;
865
+ };
866
+ };
867
+ };
868
+ EUROCONVERT: {
869
+ description: string;
870
+ abstract: string;
871
+ links: {
872
+ title: string;
873
+ url: string;
874
+ }[];
875
+ functionParameter: {
876
+ number1: {
877
+ name: string;
878
+ detail: string;
879
+ };
880
+ number2: {
881
+ name: string;
882
+ detail: string;
883
+ };
884
+ };
885
+ };
886
+ REGISTER_ID: {
887
+ description: string;
888
+ abstract: string;
889
+ links: {
890
+ title: string;
891
+ url: string;
892
+ }[];
893
+ functionParameter: {
894
+ number1: {
895
+ name: string;
896
+ detail: string;
897
+ };
898
+ number2: {
899
+ name: string;
900
+ detail: string;
901
+ };
902
+ };
903
+ };
904
+ };
905
+ export default _default;