@univerjs/sheets-formula 0.2.6 → 0.2.8

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 (117) hide show
  1. package/lib/cjs/index.js +4 -4
  2. package/lib/es/index.js +1185 -724
  3. package/lib/locale/en-US.json +706 -428
  4. package/lib/locale/ru-RU.json +703 -425
  5. package/lib/locale/vi-VN.json +2644 -1855
  6. package/lib/locale/zh-CN.json +750 -472
  7. package/lib/locale/zh-TW.json +834 -588
  8. package/lib/types/commands/commands/formula-clipboard.command.d.ts +0 -1
  9. package/lib/types/commands/commands/insert-function.command.d.ts +0 -1
  10. package/lib/types/commands/mutations/formula.mutation.d.ts +0 -1
  11. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +0 -1
  12. package/lib/types/commands/operations/editor-formula.operation.d.ts +0 -1
  13. package/lib/types/commands/operations/help-function.operation.d.ts +0 -1
  14. package/lib/types/commands/operations/insert-function.operation.d.ts +0 -1
  15. package/lib/types/commands/operations/more-functions.operation.d.ts +0 -1
  16. package/lib/types/commands/operations/reference-absolute.operation.d.ts +0 -1
  17. package/lib/types/commands/operations/search-function.operation.d.ts +0 -1
  18. package/lib/types/common/selection.d.ts +0 -1
  19. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +0 -1
  20. package/lib/types/controllers/active-dirty.controller.d.ts +0 -1
  21. package/lib/types/controllers/array-formula-display.controller.d.ts +0 -1
  22. package/lib/types/controllers/defined-name.controller.d.ts +0 -1
  23. package/lib/types/controllers/formula-alert-render.controller.d.ts +0 -1
  24. package/lib/types/controllers/formula-auto-fill.controller.d.ts +0 -1
  25. package/lib/types/controllers/formula-clipboard.controller.d.ts +0 -1
  26. package/lib/types/controllers/formula-editor-show.controller.d.ts +0 -1
  27. package/lib/types/controllers/formula-render.controller.d.ts +0 -1
  28. package/lib/types/controllers/formula-ui.controller.d.ts +0 -1
  29. package/lib/types/controllers/menu.d.ts +0 -1
  30. package/lib/types/controllers/prompt.controller.d.ts +3 -2
  31. package/lib/types/controllers/shortcuts/prompt.shortcut.d.ts +0 -1
  32. package/lib/types/controllers/trigger-calculation.controller.d.ts +0 -1
  33. package/lib/types/controllers/update-formula.controller.d.ts +0 -1
  34. package/lib/types/controllers/utils/offset-formula-data.d.ts +0 -1
  35. package/lib/types/controllers/utils/ref-range-formula.d.ts +0 -1
  36. package/lib/types/controllers/utils/utils.d.ts +0 -1
  37. package/lib/types/formula-ui-plugin.d.ts +0 -1
  38. package/lib/types/index.d.ts +1 -0
  39. package/lib/types/locale/en-US.d.ts +440 -162
  40. package/lib/types/locale/function-list/array/ru-RU.d.ts +0 -1
  41. package/lib/types/locale/function-list/compatibility/ru-RU.d.ts +0 -1
  42. package/lib/types/locale/function-list/date/ru-RU.d.ts +0 -1
  43. package/lib/types/locale/function-list/date/vi-VN.d.ts +105 -26
  44. package/lib/types/locale/function-list/date/zh-TW.d.ts +32 -8
  45. package/lib/types/locale/function-list/engineering/en-US.d.ts +50 -66
  46. package/lib/types/locale/function-list/engineering/ja-JP.d.ts +50 -66
  47. package/lib/types/locale/function-list/engineering/ru-RU.d.ts +0 -1
  48. package/lib/types/locale/function-list/engineering/vi-VN.d.ts +50 -66
  49. package/lib/types/locale/function-list/engineering/zh-CN.d.ts +50 -66
  50. package/lib/types/locale/function-list/engineering/zh-TW.d.ts +50 -66
  51. package/lib/types/locale/function-list/financial/en-US.d.ts +344 -56
  52. package/lib/types/locale/function-list/financial/ja-JP.d.ts +344 -56
  53. package/lib/types/locale/function-list/financial/ru-RU.d.ts +0 -1
  54. package/lib/types/locale/function-list/financial/vi-VN.d.ts +344 -56
  55. package/lib/types/locale/function-list/financial/zh-CN.d.ts +344 -56
  56. package/lib/types/locale/function-list/financial/zh-TW.d.ts +344 -56
  57. package/lib/types/locale/function-list/information/ja-JP.d.ts +8 -40
  58. package/lib/types/locale/function-list/information/ru-RU.d.ts +0 -1
  59. package/lib/types/locale/function-list/information/vi-VN.d.ts +218 -3
  60. package/lib/types/locale/function-list/logical/en-US.d.ts +45 -35
  61. package/lib/types/locale/function-list/logical/ja-JP.d.ts +45 -35
  62. package/lib/types/locale/function-list/logical/ru-RU.d.ts +0 -1
  63. package/lib/types/locale/function-list/logical/vi-VN.d.ts +45 -35
  64. package/lib/types/locale/function-list/logical/zh-CN.d.ts +45 -35
  65. package/lib/types/locale/function-list/logical/zh-TW.d.ts +45 -35
  66. package/lib/types/locale/function-list/lookup/en-US.d.ts +1 -5
  67. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +1 -5
  68. package/lib/types/locale/function-list/lookup/ru-RU.d.ts +0 -1
  69. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +421 -9
  70. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +1 -5
  71. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +1 -5
  72. package/lib/types/locale/function-list/math/ru-RU.d.ts +0 -1
  73. package/lib/types/locale/function-list/math/vi-VN.d.ts +1022 -3
  74. package/lib/types/locale/function-list/math/zh-TW.d.ts +21 -77
  75. package/lib/types/locale/function-list/statistical/ru-RU.d.ts +0 -1
  76. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +334 -0
  77. package/lib/types/locale/function-list/text/vi-VN.d.ts +135 -1
  78. package/lib/types/locale/function-list/web/vi-VN.d.ts +0 -1
  79. package/lib/types/locale/ru-RU.d.ts +440 -162
  80. package/lib/types/locale/vi-VN.d.ts +1378 -623
  81. package/lib/types/locale/zh-CN.d.ts +440 -162
  82. package/lib/types/locale/zh-TW.d.ts +493 -247
  83. package/lib/types/services/description.service.d.ts +0 -1
  84. package/lib/types/services/formula-common.d.ts +0 -1
  85. package/lib/types/services/formula-ref-range.service.d.ts +0 -1
  86. package/lib/types/services/function-list/array.d.ts +0 -1
  87. package/lib/types/services/function-list/compatibility.d.ts +0 -1
  88. package/lib/types/services/function-list/cube.d.ts +0 -1
  89. package/lib/types/services/function-list/database.d.ts +0 -1
  90. package/lib/types/services/function-list/date.d.ts +0 -1
  91. package/lib/types/services/function-list/engineering.d.ts +0 -1
  92. package/lib/types/services/function-list/financial.d.ts +0 -1
  93. package/lib/types/services/function-list/function-list.d.ts +0 -1
  94. package/lib/types/services/function-list/information.d.ts +0 -1
  95. package/lib/types/services/function-list/logical.d.ts +0 -1
  96. package/lib/types/services/function-list/lookup.d.ts +0 -1
  97. package/lib/types/services/function-list/math.d.ts +0 -1
  98. package/lib/types/services/function-list/statistical.d.ts +0 -1
  99. package/lib/types/services/function-list/text.d.ts +0 -1
  100. package/lib/types/services/function-list/univer.d.ts +0 -1
  101. package/lib/types/services/function-list/web.d.ts +0 -1
  102. package/lib/types/services/prompt.service.d.ts +5 -2
  103. package/lib/types/services/register-function.service.d.ts +0 -1
  104. package/lib/types/services/register-other-formula.service.d.ts +0 -1
  105. package/lib/types/services/remote/remote-register-function.service.d.ts +0 -1
  106. package/lib/types/services/render-services/ref-selections.render-service.d.ts +0 -1
  107. package/lib/types/services/utils.d.ts +0 -1
  108. package/lib/types/views/FormulaPromptContainer.d.ts +0 -1
  109. package/lib/types/views/more-functions/MoreFunctions.d.ts +0 -1
  110. package/lib/types/views/more-functions/function-help/FunctionHelp.d.ts +0 -1
  111. package/lib/types/views/more-functions/function-params/FunctionParams.d.ts +0 -1
  112. package/lib/types/views/more-functions/input-params/InputParams.d.ts +0 -1
  113. package/lib/types/views/more-functions/select-function/SelectFunction.d.ts +0 -1
  114. package/lib/types/views/prompt/help-function/HelpFunction.d.ts +0 -1
  115. package/lib/types/views/prompt/search-function/SearchFunction.d.ts +0 -1
  116. package/lib/umd/index.js +4 -4
  117. package/package.json +24 -24
@@ -78,11 +78,7 @@ declare const _default: {
78
78
  url: string;
79
79
  }[];
80
80
  functionParameter: {
81
- number1: {
82
- name: string;
83
- detail: string;
84
- };
85
- number2: {
81
+ number: {
86
82
  name: string;
87
83
  detail: string;
88
84
  };
@@ -132,11 +128,7 @@ declare const _default: {
132
128
  url: string;
133
129
  }[];
134
130
  functionParameter: {
135
- number1: {
136
- name: string;
137
- detail: string;
138
- };
139
- number2: {
131
+ number: {
140
132
  name: string;
141
133
  detail: string;
142
134
  };
@@ -150,11 +142,7 @@ declare const _default: {
150
142
  url: string;
151
143
  }[];
152
144
  functionParameter: {
153
- number1: {
154
- name: string;
155
- detail: string;
156
- };
157
- number2: {
145
+ number: {
158
146
  name: string;
159
147
  detail: string;
160
148
  };
@@ -168,11 +156,7 @@ declare const _default: {
168
156
  url: string;
169
157
  }[];
170
158
  functionParameter: {
171
- number1: {
172
- name: string;
173
- detail: string;
174
- };
175
- number2: {
159
+ number: {
176
160
  name: string;
177
161
  detail: string;
178
162
  };
@@ -186,11 +170,11 @@ declare const _default: {
186
170
  url: string;
187
171
  }[];
188
172
  functionParameter: {
189
- number1: {
173
+ xNum: {
190
174
  name: string;
191
175
  detail: string;
192
176
  };
193
- number2: {
177
+ yNum: {
194
178
  name: string;
195
179
  detail: string;
196
180
  };
@@ -204,11 +188,7 @@ declare const _default: {
204
188
  url: string;
205
189
  }[];
206
190
  functionParameter: {
207
- number1: {
208
- name: string;
209
- detail: string;
210
- };
211
- number2: {
191
+ number: {
212
192
  name: string;
213
193
  detail: string;
214
194
  };
@@ -230,6 +210,10 @@ declare const _default: {
230
210
  name: string;
231
211
  detail: string;
232
212
  };
213
+ minLength: {
214
+ name: string;
215
+ detail: string;
216
+ };
233
217
  };
234
218
  };
235
219
  CEILING: {
@@ -334,11 +318,7 @@ declare const _default: {
334
318
  url: string;
335
319
  }[];
336
320
  functionParameter: {
337
- number1: {
338
- name: string;
339
- detail: string;
340
- };
341
- number2: {
321
+ number: {
342
322
  name: string;
343
323
  detail: string;
344
324
  };
@@ -352,11 +332,7 @@ declare const _default: {
352
332
  url: string;
353
333
  }[];
354
334
  functionParameter: {
355
- number1: {
356
- name: string;
357
- detail: string;
358
- };
359
- number2: {
335
+ number: {
360
336
  name: string;
361
337
  detail: string;
362
338
  };
@@ -370,11 +346,7 @@ declare const _default: {
370
346
  url: string;
371
347
  }[];
372
348
  functionParameter: {
373
- number1: {
374
- name: string;
375
- detail: string;
376
- };
377
- number2: {
349
+ number: {
378
350
  name: string;
379
351
  detail: string;
380
352
  };
@@ -388,11 +360,7 @@ declare const _default: {
388
360
  url: string;
389
361
  }[];
390
362
  functionParameter: {
391
- number1: {
392
- name: string;
393
- detail: string;
394
- };
395
- number2: {
363
+ number: {
396
364
  name: string;
397
365
  detail: string;
398
366
  };
@@ -406,11 +374,7 @@ declare const _default: {
406
374
  url: string;
407
375
  }[];
408
376
  functionParameter: {
409
- number1: {
410
- name: string;
411
- detail: string;
412
- };
413
- number2: {
377
+ number: {
414
378
  name: string;
415
379
  detail: string;
416
380
  };
@@ -424,11 +388,7 @@ declare const _default: {
424
388
  url: string;
425
389
  }[];
426
390
  functionParameter: {
427
- number1: {
428
- name: string;
429
- detail: string;
430
- };
431
- number2: {
391
+ number: {
432
392
  name: string;
433
393
  detail: string;
434
394
  };
@@ -1160,11 +1120,7 @@ declare const _default: {
1160
1120
  url: string;
1161
1121
  }[];
1162
1122
  functionParameter: {
1163
- number1: {
1164
- name: string;
1165
- detail: string;
1166
- };
1167
- number2: {
1123
+ number: {
1168
1124
  name: string;
1169
1125
  detail: string;
1170
1126
  };
@@ -1178,11 +1134,7 @@ declare const _default: {
1178
1134
  url: string;
1179
1135
  }[];
1180
1136
  functionParameter: {
1181
- number1: {
1182
- name: string;
1183
- detail: string;
1184
- };
1185
- number2: {
1137
+ number: {
1186
1138
  name: string;
1187
1139
  detail: string;
1188
1140
  };
@@ -1406,11 +1358,7 @@ declare const _default: {
1406
1358
  url: string;
1407
1359
  }[];
1408
1360
  functionParameter: {
1409
- number1: {
1410
- name: string;
1411
- detail: string;
1412
- };
1413
- number2: {
1361
+ number: {
1414
1362
  name: string;
1415
1363
  detail: string;
1416
1364
  };
@@ -1424,11 +1372,7 @@ declare const _default: {
1424
1372
  url: string;
1425
1373
  }[];
1426
1374
  functionParameter: {
1427
- number1: {
1428
- name: string;
1429
- detail: string;
1430
- };
1431
- number2: {
1375
+ number: {
1432
1376
  name: string;
1433
1377
  detail: string;
1434
1378
  };
@@ -1,3 +1,2 @@
1
1
  import { default as enUS } from './en-US';
2
-
3
2
  export default enUS;
@@ -390,5 +390,339 @@ declare const _default: {
390
390
  };
391
391
  };
392
392
  };
393
+ COUNTBLANK: {
394
+ description: string;
395
+ abstract: string;
396
+ links: {
397
+ title: string;
398
+ url: string;
399
+ }[];
400
+ functionParameter: {
401
+ range: {
402
+ name: string;
403
+ detail: string;
404
+ };
405
+ };
406
+ };
407
+ COUNTIF: {
408
+ description: string;
409
+ abstract: string;
410
+ links: {
411
+ title: string;
412
+ url: string;
413
+ }[];
414
+ functionParameter: {
415
+ range: {
416
+ name: string;
417
+ detail: string;
418
+ };
419
+ criteria: {
420
+ name: string;
421
+ detail: string;
422
+ };
423
+ };
424
+ };
425
+ COUNTIFS: {
426
+ description: string;
427
+ abstract: string;
428
+ links: {
429
+ title: string;
430
+ url: string;
431
+ }[];
432
+ functionParameter: {
433
+ criteriaRange1: {
434
+ name: string;
435
+ detail: string;
436
+ };
437
+ criteria1: {
438
+ name: string;
439
+ detail: string;
440
+ };
441
+ criteriaRange2: {
442
+ name: string;
443
+ detail: string;
444
+ };
445
+ criteria2: {
446
+ name: string;
447
+ detail: string;
448
+ };
449
+ };
450
+ };
451
+ MAX: {
452
+ description: string;
453
+ abstract: string;
454
+ links: {
455
+ title: string;
456
+ url: string;
457
+ }[];
458
+ functionParameter: {
459
+ number1: {
460
+ name: string;
461
+ detail: string;
462
+ };
463
+ number2: {
464
+ name: string;
465
+ detail: string;
466
+ };
467
+ };
468
+ };
469
+ MAXA: {
470
+ description: string;
471
+ abstract: string;
472
+ links: {
473
+ title: string;
474
+ url: string;
475
+ }[];
476
+ functionParameter: {
477
+ value1: {
478
+ name: string;
479
+ detail: string;
480
+ };
481
+ value2: {
482
+ name: string;
483
+ detail: string;
484
+ };
485
+ };
486
+ };
487
+ MAXIFS: {
488
+ description: string;
489
+ abstract: string;
490
+ links: {
491
+ title: string;
492
+ url: string;
493
+ }[];
494
+ functionParameter: {
495
+ maxRange: {
496
+ name: string;
497
+ detail: string;
498
+ };
499
+ criteriaRange1: {
500
+ name: string;
501
+ detail: string;
502
+ };
503
+ criteria1: {
504
+ name: string;
505
+ detail: string;
506
+ };
507
+ criteriaRange2: {
508
+ name: string;
509
+ detail: string;
510
+ };
511
+ criteria2: {
512
+ name: string;
513
+ detail: string;
514
+ };
515
+ };
516
+ };
517
+ MIN: {
518
+ description: string;
519
+ abstract: string;
520
+ links: {
521
+ title: string;
522
+ url: string;
523
+ }[];
524
+ functionParameter: {
525
+ number1: {
526
+ name: string;
527
+ detail: string;
528
+ };
529
+ number2: {
530
+ name: string;
531
+ detail: string;
532
+ };
533
+ };
534
+ };
535
+ MINA: {
536
+ description: string;
537
+ abstract: string;
538
+ links: {
539
+ title: string;
540
+ url: string;
541
+ }[];
542
+ functionParameter: {
543
+ value1: {
544
+ name: string;
545
+ detail: string;
546
+ };
547
+ value2: {
548
+ name: string;
549
+ detail: string;
550
+ };
551
+ };
552
+ };
553
+ MINIFS: {
554
+ description: string;
555
+ abstract: string;
556
+ links: {
557
+ title: string;
558
+ url: string;
559
+ }[];
560
+ functionParameter: {
561
+ minRange: {
562
+ name: string;
563
+ detail: string;
564
+ };
565
+ criteriaRange1: {
566
+ name: string;
567
+ detail: string;
568
+ };
569
+ criteria1: {
570
+ name: string;
571
+ detail: string;
572
+ };
573
+ criteriaRange2: {
574
+ name: string;
575
+ detail: string;
576
+ };
577
+ criteria2: {
578
+ name: string;
579
+ detail: string;
580
+ };
581
+ };
582
+ };
583
+ STDEV_P: {
584
+ description: string;
585
+ abstract: string;
586
+ links: {
587
+ title: string;
588
+ url: string;
589
+ }[];
590
+ functionParameter: {
591
+ number1: {
592
+ name: string;
593
+ detail: string;
594
+ };
595
+ number2: {
596
+ name: string;
597
+ detail: string;
598
+ };
599
+ };
600
+ };
601
+ STDEV_S: {
602
+ description: string;
603
+ abstract: string;
604
+ links: {
605
+ title: string;
606
+ url: string;
607
+ }[];
608
+ functionParameter: {
609
+ number1: {
610
+ name: string;
611
+ detail: string;
612
+ };
613
+ number2: {
614
+ name: string;
615
+ detail: string;
616
+ };
617
+ };
618
+ };
619
+ STDEVA: {
620
+ description: string;
621
+ abstract: string;
622
+ links: {
623
+ title: string;
624
+ url: string;
625
+ }[];
626
+ functionParameter: {
627
+ value1: {
628
+ name: string;
629
+ detail: string;
630
+ };
631
+ value2: {
632
+ name: string;
633
+ detail: string;
634
+ };
635
+ };
636
+ };
637
+ STDEVPA: {
638
+ description: string;
639
+ abstract: string;
640
+ links: {
641
+ title: string;
642
+ url: string;
643
+ }[];
644
+ functionParameter: {
645
+ value1: {
646
+ name: string;
647
+ detail: string;
648
+ };
649
+ value2: {
650
+ name: string;
651
+ detail: string;
652
+ };
653
+ };
654
+ };
655
+ VAR_P: {
656
+ description: string;
657
+ abstract: string;
658
+ links: {
659
+ title: string;
660
+ url: string;
661
+ }[];
662
+ functionParameter: {
663
+ number1: {
664
+ name: string;
665
+ detail: string;
666
+ };
667
+ number2: {
668
+ name: string;
669
+ detail: string;
670
+ };
671
+ };
672
+ };
673
+ VAR_S: {
674
+ description: string;
675
+ abstract: string;
676
+ links: {
677
+ title: string;
678
+ url: string;
679
+ }[];
680
+ functionParameter: {
681
+ number1: {
682
+ name: string;
683
+ detail: string;
684
+ };
685
+ number2: {
686
+ name: string;
687
+ detail: string;
688
+ };
689
+ };
690
+ };
691
+ VARA: {
692
+ description: string;
693
+ abstract: string;
694
+ links: {
695
+ title: string;
696
+ url: string;
697
+ }[];
698
+ functionParameter: {
699
+ value1: {
700
+ name: string;
701
+ detail: string;
702
+ };
703
+ value2: {
704
+ name: string;
705
+ detail: string;
706
+ };
707
+ };
708
+ };
709
+ VARPA: {
710
+ description: string;
711
+ abstract: string;
712
+ links: {
713
+ title: string;
714
+ url: string;
715
+ }[];
716
+ functionParameter: {
717
+ value1: {
718
+ name: string;
719
+ detail: string;
720
+ };
721
+ value2: {
722
+ name: string;
723
+ detail: string;
724
+ };
725
+ };
726
+ };
393
727
  };
394
728
  export default _default;
@@ -288,6 +288,20 @@ declare const _default: {
288
288
  };
289
289
  };
290
290
  };
291
+ LENB: {
292
+ description: string;
293
+ abstract: string;
294
+ links: {
295
+ title: string;
296
+ url: string;
297
+ }[];
298
+ functionParameter: {
299
+ text: {
300
+ name: string;
301
+ detail: string;
302
+ };
303
+ };
304
+ };
291
305
  LOWER: {
292
306
  description: string;
293
307
  abstract: string;
@@ -452,7 +466,7 @@ declare const _default: {
452
466
  name: string;
453
467
  detail: string;
454
468
  };
455
- number_times: {
469
+ numberTimes: {
456
470
  name: string;
457
471
  detail: string;
458
472
  };
@@ -550,6 +564,92 @@ declare const _default: {
550
564
  };
551
565
  };
552
566
  };
567
+ TEXT: {
568
+ description: string;
569
+ abstract: string;
570
+ links: {
571
+ title: string;
572
+ url: string;
573
+ }[];
574
+ functionParameter: {
575
+ value: {
576
+ name: string;
577
+ detail: string;
578
+ };
579
+ formatText: {
580
+ name: string;
581
+ detail: string;
582
+ };
583
+ };
584
+ };
585
+ TEXTAFTER: {
586
+ description: string;
587
+ abstract: string;
588
+ links: {
589
+ title: string;
590
+ url: string;
591
+ }[];
592
+ functionParameter: {
593
+ text: {
594
+ name: string;
595
+ detail: string;
596
+ };
597
+ delimiter: {
598
+ name: string;
599
+ detail: string;
600
+ };
601
+ instanceNum: {
602
+ name: string;
603
+ detail: string;
604
+ };
605
+ matchMode: {
606
+ name: string;
607
+ detail: string;
608
+ };
609
+ matchEnd: {
610
+ name: string;
611
+ detail: string;
612
+ };
613
+ ifNotFound: {
614
+ name: string;
615
+ detail: string;
616
+ };
617
+ };
618
+ };
619
+ TEXTBEFORE: {
620
+ description: string;
621
+ abstract: string;
622
+ links: {
623
+ title: string;
624
+ url: string;
625
+ }[];
626
+ functionParameter: {
627
+ text: {
628
+ name: string;
629
+ detail: string;
630
+ };
631
+ delimiter: {
632
+ name: string;
633
+ detail: string;
634
+ };
635
+ instanceNum: {
636
+ name: string;
637
+ detail: string;
638
+ };
639
+ matchMode: {
640
+ name: string;
641
+ detail: string;
642
+ };
643
+ matchEnd: {
644
+ name: string;
645
+ detail: string;
646
+ };
647
+ ifNotFound: {
648
+ name: string;
649
+ detail: string;
650
+ };
651
+ };
652
+ };
553
653
  TEXTJOIN: {
554
654
  description: string;
555
655
  abstract: string;
@@ -576,6 +676,40 @@ declare const _default: {
576
676
  };
577
677
  };
578
678
  };
679
+ TEXTSPLIT: {
680
+ description: string;
681
+ abstract: string;
682
+ links: {
683
+ title: string;
684
+ url: string;
685
+ }[];
686
+ functionParameter: {
687
+ text: {
688
+ name: string;
689
+ detail: string;
690
+ };
691
+ colDelimiter: {
692
+ name: string;
693
+ detail: string;
694
+ };
695
+ rowDelimiter: {
696
+ name: string;
697
+ detail: string;
698
+ };
699
+ ignoreEmpty: {
700
+ name: string;
701
+ detail: string;
702
+ };
703
+ matchMode: {
704
+ name: string;
705
+ detail: string;
706
+ };
707
+ padWith: {
708
+ name: string;
709
+ detail: string;
710
+ };
711
+ };
712
+ };
579
713
  TRIM: {
580
714
  description: string;
581
715
  abstract: string;
@@ -1,3 +1,2 @@
1
1
  import { default as enUS } from './en-US';
2
-
3
2
  export default enUS;