@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,1388 @@
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
+ ABS: {
18
+ description: string;
19
+ abstract: string;
20
+ links: {
21
+ title: string;
22
+ url: string;
23
+ }[];
24
+ functionParameter: {
25
+ number: {
26
+ name: string;
27
+ detail: string;
28
+ };
29
+ };
30
+ };
31
+ ACOS: {
32
+ description: string;
33
+ abstract: string;
34
+ links: {
35
+ title: string;
36
+ url: string;
37
+ }[];
38
+ functionParameter: {
39
+ number: {
40
+ name: string;
41
+ detail: string;
42
+ };
43
+ };
44
+ };
45
+ ACOSH: {
46
+ description: string;
47
+ abstract: string;
48
+ links: {
49
+ title: string;
50
+ url: string;
51
+ }[];
52
+ functionParameter: {
53
+ number: {
54
+ name: string;
55
+ detail: string;
56
+ };
57
+ };
58
+ };
59
+ ACOT: {
60
+ description: string;
61
+ abstract: string;
62
+ links: {
63
+ title: string;
64
+ url: string;
65
+ }[];
66
+ functionParameter: {
67
+ number: {
68
+ name: string;
69
+ detail: string;
70
+ };
71
+ };
72
+ };
73
+ ACOTH: {
74
+ description: string;
75
+ abstract: string;
76
+ links: {
77
+ title: string;
78
+ url: string;
79
+ }[];
80
+ functionParameter: {
81
+ number: {
82
+ name: string;
83
+ detail: string;
84
+ };
85
+ };
86
+ };
87
+ AGGREGATE: {
88
+ description: string;
89
+ abstract: string;
90
+ links: {
91
+ title: string;
92
+ url: string;
93
+ }[];
94
+ functionParameter: {
95
+ number1: {
96
+ name: string;
97
+ detail: string;
98
+ };
99
+ number2: {
100
+ name: string;
101
+ detail: string;
102
+ };
103
+ };
104
+ };
105
+ ARABIC: {
106
+ description: string;
107
+ abstract: string;
108
+ links: {
109
+ title: string;
110
+ url: string;
111
+ }[];
112
+ functionParameter: {
113
+ number1: {
114
+ name: string;
115
+ detail: string;
116
+ };
117
+ number2: {
118
+ name: string;
119
+ detail: string;
120
+ };
121
+ };
122
+ };
123
+ ASIN: {
124
+ description: string;
125
+ abstract: string;
126
+ links: {
127
+ title: string;
128
+ url: string;
129
+ }[];
130
+ functionParameter: {
131
+ number: {
132
+ name: string;
133
+ detail: string;
134
+ };
135
+ };
136
+ };
137
+ ASINH: {
138
+ description: string;
139
+ abstract: string;
140
+ links: {
141
+ title: string;
142
+ url: string;
143
+ }[];
144
+ functionParameter: {
145
+ number: {
146
+ name: string;
147
+ detail: string;
148
+ };
149
+ };
150
+ };
151
+ ATAN: {
152
+ description: string;
153
+ abstract: string;
154
+ links: {
155
+ title: string;
156
+ url: string;
157
+ }[];
158
+ functionParameter: {
159
+ number: {
160
+ name: string;
161
+ detail: string;
162
+ };
163
+ };
164
+ };
165
+ ATAN2: {
166
+ description: string;
167
+ abstract: string;
168
+ links: {
169
+ title: string;
170
+ url: string;
171
+ }[];
172
+ functionParameter: {
173
+ xNum: {
174
+ name: string;
175
+ detail: string;
176
+ };
177
+ yNum: {
178
+ name: string;
179
+ detail: string;
180
+ };
181
+ };
182
+ };
183
+ ATANH: {
184
+ description: string;
185
+ abstract: string;
186
+ links: {
187
+ title: string;
188
+ url: string;
189
+ }[];
190
+ functionParameter: {
191
+ number: {
192
+ name: string;
193
+ detail: string;
194
+ };
195
+ };
196
+ };
197
+ BASE: {
198
+ description: string;
199
+ abstract: string;
200
+ links: {
201
+ title: string;
202
+ url: string;
203
+ }[];
204
+ functionParameter: {
205
+ number: {
206
+ name: string;
207
+ detail: string;
208
+ };
209
+ radix: {
210
+ name: string;
211
+ detail: string;
212
+ };
213
+ minLength: {
214
+ name: string;
215
+ detail: string;
216
+ };
217
+ };
218
+ };
219
+ CEILING: {
220
+ description: string;
221
+ abstract: string;
222
+ links: {
223
+ title: string;
224
+ url: string;
225
+ }[];
226
+ functionParameter: {
227
+ number: {
228
+ name: string;
229
+ detail: string;
230
+ };
231
+ significance: {
232
+ name: string;
233
+ detail: string;
234
+ };
235
+ };
236
+ };
237
+ CEILING_MATH: {
238
+ description: string;
239
+ abstract: string;
240
+ links: {
241
+ title: string;
242
+ url: string;
243
+ }[];
244
+ functionParameter: {
245
+ number: {
246
+ name: string;
247
+ detail: string;
248
+ };
249
+ significance: {
250
+ name: string;
251
+ detail: string;
252
+ };
253
+ mode: {
254
+ name: string;
255
+ detail: string;
256
+ };
257
+ };
258
+ };
259
+ CEILING_PRECISE: {
260
+ description: string;
261
+ abstract: string;
262
+ links: {
263
+ title: string;
264
+ url: string;
265
+ }[];
266
+ functionParameter: {
267
+ number: {
268
+ name: string;
269
+ detail: string;
270
+ };
271
+ significance: {
272
+ name: string;
273
+ detail: string;
274
+ };
275
+ };
276
+ };
277
+ COMBIN: {
278
+ description: string;
279
+ abstract: string;
280
+ links: {
281
+ title: string;
282
+ url: string;
283
+ }[];
284
+ functionParameter: {
285
+ number: {
286
+ name: string;
287
+ detail: string;
288
+ };
289
+ numberChosen: {
290
+ name: string;
291
+ detail: string;
292
+ };
293
+ };
294
+ };
295
+ COMBINA: {
296
+ description: string;
297
+ abstract: string;
298
+ links: {
299
+ title: string;
300
+ url: string;
301
+ }[];
302
+ functionParameter: {
303
+ number: {
304
+ name: string;
305
+ detail: string;
306
+ };
307
+ numberChosen: {
308
+ name: string;
309
+ detail: string;
310
+ };
311
+ };
312
+ };
313
+ COS: {
314
+ description: string;
315
+ abstract: string;
316
+ links: {
317
+ title: string;
318
+ url: string;
319
+ }[];
320
+ functionParameter: {
321
+ number: {
322
+ name: string;
323
+ detail: string;
324
+ };
325
+ };
326
+ };
327
+ COSH: {
328
+ description: string;
329
+ abstract: string;
330
+ links: {
331
+ title: string;
332
+ url: string;
333
+ }[];
334
+ functionParameter: {
335
+ number: {
336
+ name: string;
337
+ detail: string;
338
+ };
339
+ };
340
+ };
341
+ COT: {
342
+ description: string;
343
+ abstract: string;
344
+ links: {
345
+ title: string;
346
+ url: string;
347
+ }[];
348
+ functionParameter: {
349
+ number: {
350
+ name: string;
351
+ detail: string;
352
+ };
353
+ };
354
+ };
355
+ COTH: {
356
+ description: string;
357
+ abstract: string;
358
+ links: {
359
+ title: string;
360
+ url: string;
361
+ }[];
362
+ functionParameter: {
363
+ number: {
364
+ name: string;
365
+ detail: string;
366
+ };
367
+ };
368
+ };
369
+ CSC: {
370
+ description: string;
371
+ abstract: string;
372
+ links: {
373
+ title: string;
374
+ url: string;
375
+ }[];
376
+ functionParameter: {
377
+ number: {
378
+ name: string;
379
+ detail: string;
380
+ };
381
+ };
382
+ };
383
+ CSCH: {
384
+ description: string;
385
+ abstract: string;
386
+ links: {
387
+ title: string;
388
+ url: string;
389
+ }[];
390
+ functionParameter: {
391
+ number: {
392
+ name: string;
393
+ detail: string;
394
+ };
395
+ };
396
+ };
397
+ DECIMAL: {
398
+ description: string;
399
+ abstract: string;
400
+ links: {
401
+ title: string;
402
+ url: string;
403
+ }[];
404
+ functionParameter: {
405
+ text: {
406
+ name: string;
407
+ detail: string;
408
+ };
409
+ radix: {
410
+ name: string;
411
+ detail: string;
412
+ };
413
+ };
414
+ };
415
+ DEGREES: {
416
+ description: string;
417
+ abstract: string;
418
+ links: {
419
+ title: string;
420
+ url: string;
421
+ }[];
422
+ functionParameter: {
423
+ angle: {
424
+ name: string;
425
+ detail: string;
426
+ };
427
+ };
428
+ };
429
+ EVEN: {
430
+ description: string;
431
+ abstract: string;
432
+ links: {
433
+ title: string;
434
+ url: string;
435
+ }[];
436
+ functionParameter: {
437
+ number: {
438
+ name: string;
439
+ detail: string;
440
+ };
441
+ };
442
+ };
443
+ EXP: {
444
+ description: string;
445
+ abstract: string;
446
+ links: {
447
+ title: string;
448
+ url: string;
449
+ }[];
450
+ functionParameter: {
451
+ number: {
452
+ name: string;
453
+ detail: string;
454
+ };
455
+ };
456
+ };
457
+ FACT: {
458
+ description: string;
459
+ abstract: string;
460
+ links: {
461
+ title: string;
462
+ url: string;
463
+ }[];
464
+ functionParameter: {
465
+ number: {
466
+ name: string;
467
+ detail: string;
468
+ };
469
+ };
470
+ };
471
+ FACTDOUBLE: {
472
+ description: string;
473
+ abstract: string;
474
+ links: {
475
+ title: string;
476
+ url: string;
477
+ }[];
478
+ functionParameter: {
479
+ number: {
480
+ name: string;
481
+ detail: string;
482
+ };
483
+ };
484
+ };
485
+ FLOOR: {
486
+ description: string;
487
+ abstract: string;
488
+ links: {
489
+ title: string;
490
+ url: string;
491
+ }[];
492
+ functionParameter: {
493
+ number: {
494
+ name: string;
495
+ detail: string;
496
+ };
497
+ significance: {
498
+ name: string;
499
+ detail: string;
500
+ };
501
+ };
502
+ };
503
+ FLOOR_MATH: {
504
+ description: string;
505
+ abstract: string;
506
+ links: {
507
+ title: string;
508
+ url: string;
509
+ }[];
510
+ functionParameter: {
511
+ number: {
512
+ name: string;
513
+ detail: string;
514
+ };
515
+ significance: {
516
+ name: string;
517
+ detail: string;
518
+ };
519
+ mode: {
520
+ name: string;
521
+ detail: string;
522
+ };
523
+ };
524
+ };
525
+ FLOOR_PRECISE: {
526
+ description: string;
527
+ abstract: string;
528
+ links: {
529
+ title: string;
530
+ url: string;
531
+ }[];
532
+ functionParameter: {
533
+ number: {
534
+ name: string;
535
+ detail: string;
536
+ };
537
+ significance: {
538
+ name: string;
539
+ detail: string;
540
+ };
541
+ };
542
+ };
543
+ GCD: {
544
+ description: string;
545
+ abstract: string;
546
+ links: {
547
+ title: string;
548
+ url: string;
549
+ }[];
550
+ functionParameter: {
551
+ number1: {
552
+ name: string;
553
+ detail: string;
554
+ };
555
+ number2: {
556
+ name: string;
557
+ detail: string;
558
+ };
559
+ };
560
+ };
561
+ INT: {
562
+ description: string;
563
+ abstract: string;
564
+ links: {
565
+ title: string;
566
+ url: string;
567
+ }[];
568
+ functionParameter: {
569
+ number: {
570
+ name: string;
571
+ detail: string;
572
+ };
573
+ };
574
+ };
575
+ ISO_CEILING: {
576
+ description: string;
577
+ abstract: string;
578
+ links: {
579
+ title: string;
580
+ url: string;
581
+ }[];
582
+ functionParameter: {
583
+ number1: {
584
+ name: string;
585
+ detail: string;
586
+ };
587
+ number2: {
588
+ name: string;
589
+ detail: string;
590
+ };
591
+ };
592
+ };
593
+ LCM: {
594
+ description: string;
595
+ abstract: string;
596
+ links: {
597
+ title: string;
598
+ url: string;
599
+ }[];
600
+ functionParameter: {
601
+ number1: {
602
+ name: string;
603
+ detail: string;
604
+ };
605
+ number2: {
606
+ name: string;
607
+ detail: string;
608
+ };
609
+ };
610
+ };
611
+ LET: {
612
+ description: string;
613
+ abstract: string;
614
+ links: {
615
+ title: string;
616
+ url: string;
617
+ }[];
618
+ functionParameter: {
619
+ number1: {
620
+ name: string;
621
+ detail: string;
622
+ };
623
+ number2: {
624
+ name: string;
625
+ detail: string;
626
+ };
627
+ };
628
+ };
629
+ LN: {
630
+ description: string;
631
+ abstract: string;
632
+ links: {
633
+ title: string;
634
+ url: string;
635
+ }[];
636
+ functionParameter: {
637
+ number: {
638
+ name: string;
639
+ detail: string;
640
+ };
641
+ };
642
+ };
643
+ LOG: {
644
+ description: string;
645
+ abstract: string;
646
+ links: {
647
+ title: string;
648
+ url: string;
649
+ }[];
650
+ functionParameter: {
651
+ number: {
652
+ name: string;
653
+ detail: string;
654
+ };
655
+ base: {
656
+ name: string;
657
+ detail: string;
658
+ };
659
+ };
660
+ };
661
+ LOG10: {
662
+ description: string;
663
+ abstract: string;
664
+ links: {
665
+ title: string;
666
+ url: string;
667
+ }[];
668
+ functionParameter: {
669
+ number: {
670
+ name: string;
671
+ detail: string;
672
+ };
673
+ };
674
+ };
675
+ MDETERM: {
676
+ description: string;
677
+ abstract: string;
678
+ links: {
679
+ title: string;
680
+ url: string;
681
+ }[];
682
+ functionParameter: {
683
+ array: {
684
+ name: string;
685
+ detail: string;
686
+ };
687
+ };
688
+ };
689
+ MINVERSE: {
690
+ description: string;
691
+ abstract: string;
692
+ links: {
693
+ title: string;
694
+ url: string;
695
+ }[];
696
+ functionParameter: {
697
+ array: {
698
+ name: string;
699
+ detail: string;
700
+ };
701
+ };
702
+ };
703
+ MMULT: {
704
+ description: string;
705
+ abstract: string;
706
+ links: {
707
+ title: string;
708
+ url: string;
709
+ }[];
710
+ functionParameter: {
711
+ array1: {
712
+ name: string;
713
+ detail: string;
714
+ };
715
+ array2: {
716
+ name: string;
717
+ detail: string;
718
+ };
719
+ };
720
+ };
721
+ MOD: {
722
+ description: string;
723
+ abstract: string;
724
+ links: {
725
+ title: string;
726
+ url: string;
727
+ }[];
728
+ functionParameter: {
729
+ number: {
730
+ name: string;
731
+ detail: string;
732
+ };
733
+ divisor: {
734
+ name: string;
735
+ detail: string;
736
+ };
737
+ };
738
+ };
739
+ MROUND: {
740
+ description: string;
741
+ abstract: string;
742
+ links: {
743
+ title: string;
744
+ url: string;
745
+ }[];
746
+ functionParameter: {
747
+ number: {
748
+ name: string;
749
+ detail: string;
750
+ };
751
+ multiple: {
752
+ name: string;
753
+ detail: string;
754
+ };
755
+ };
756
+ };
757
+ MULTINOMIAL: {
758
+ description: string;
759
+ abstract: string;
760
+ links: {
761
+ title: string;
762
+ url: string;
763
+ }[];
764
+ functionParameter: {
765
+ number1: {
766
+ name: string;
767
+ detail: string;
768
+ };
769
+ number2: {
770
+ name: string;
771
+ detail: string;
772
+ };
773
+ };
774
+ };
775
+ MUNIT: {
776
+ description: string;
777
+ abstract: string;
778
+ links: {
779
+ title: string;
780
+ url: string;
781
+ }[];
782
+ functionParameter: {
783
+ dimension: {
784
+ name: string;
785
+ detail: string;
786
+ };
787
+ };
788
+ };
789
+ ODD: {
790
+ description: string;
791
+ abstract: string;
792
+ links: {
793
+ title: string;
794
+ url: string;
795
+ }[];
796
+ functionParameter: {
797
+ number: {
798
+ name: string;
799
+ detail: string;
800
+ };
801
+ };
802
+ };
803
+ PI: {
804
+ description: string;
805
+ abstract: string;
806
+ links: {
807
+ title: string;
808
+ url: string;
809
+ }[];
810
+ functionParameter: {};
811
+ };
812
+ POWER: {
813
+ description: string;
814
+ abstract: string;
815
+ links: {
816
+ title: string;
817
+ url: string;
818
+ }[];
819
+ functionParameter: {
820
+ number: {
821
+ name: string;
822
+ detail: string;
823
+ };
824
+ power: {
825
+ name: string;
826
+ detail: string;
827
+ };
828
+ };
829
+ };
830
+ PRODUCT: {
831
+ description: string;
832
+ abstract: string;
833
+ links: {
834
+ title: string;
835
+ url: string;
836
+ }[];
837
+ functionParameter: {
838
+ number1: {
839
+ name: string;
840
+ detail: string;
841
+ };
842
+ number2: {
843
+ name: string;
844
+ detail: string;
845
+ };
846
+ };
847
+ };
848
+ QUOTIENT: {
849
+ description: string;
850
+ abstract: string;
851
+ links: {
852
+ title: string;
853
+ url: string;
854
+ }[];
855
+ functionParameter: {
856
+ numerator: {
857
+ name: string;
858
+ detail: string;
859
+ };
860
+ denominator: {
861
+ name: string;
862
+ detail: string;
863
+ };
864
+ };
865
+ };
866
+ RADIANS: {
867
+ description: string;
868
+ abstract: string;
869
+ links: {
870
+ title: string;
871
+ url: string;
872
+ }[];
873
+ functionParameter: {
874
+ angle: {
875
+ name: string;
876
+ detail: string;
877
+ };
878
+ };
879
+ };
880
+ RAND: {
881
+ description: string;
882
+ abstract: string;
883
+ links: {
884
+ title: string;
885
+ url: string;
886
+ }[];
887
+ functionParameter: {};
888
+ };
889
+ RANDARRAY: {
890
+ description: string;
891
+ abstract: string;
892
+ links: {
893
+ title: string;
894
+ url: string;
895
+ }[];
896
+ functionParameter: {
897
+ rows: {
898
+ name: string;
899
+ detail: string;
900
+ };
901
+ columns: {
902
+ name: string;
903
+ detail: string;
904
+ };
905
+ min: {
906
+ name: string;
907
+ detail: string;
908
+ };
909
+ max: {
910
+ name: string;
911
+ detail: string;
912
+ };
913
+ wholeNumber: {
914
+ name: string;
915
+ detail: string;
916
+ };
917
+ };
918
+ };
919
+ RANDBETWEEN: {
920
+ description: string;
921
+ abstract: string;
922
+ links: {
923
+ title: string;
924
+ url: string;
925
+ }[];
926
+ functionParameter: {
927
+ bottom: {
928
+ name: string;
929
+ detail: string;
930
+ };
931
+ top: {
932
+ name: string;
933
+ detail: string;
934
+ };
935
+ };
936
+ };
937
+ ROMAN: {
938
+ description: string;
939
+ abstract: string;
940
+ links: {
941
+ title: string;
942
+ url: string;
943
+ }[];
944
+ functionParameter: {
945
+ number1: {
946
+ name: string;
947
+ detail: string;
948
+ };
949
+ number2: {
950
+ name: string;
951
+ detail: string;
952
+ };
953
+ };
954
+ };
955
+ ROUND: {
956
+ description: string;
957
+ abstract: string;
958
+ links: {
959
+ title: string;
960
+ url: string;
961
+ }[];
962
+ functionParameter: {
963
+ number: {
964
+ name: string;
965
+ detail: string;
966
+ };
967
+ numDigits: {
968
+ name: string;
969
+ detail: string;
970
+ };
971
+ };
972
+ };
973
+ ROUNDDOWN: {
974
+ description: string;
975
+ abstract: string;
976
+ links: {
977
+ title: string;
978
+ url: string;
979
+ }[];
980
+ functionParameter: {
981
+ number: {
982
+ name: string;
983
+ detail: string;
984
+ };
985
+ numDigits: {
986
+ name: string;
987
+ detail: string;
988
+ };
989
+ };
990
+ };
991
+ ROUNDUP: {
992
+ description: string;
993
+ abstract: string;
994
+ links: {
995
+ title: string;
996
+ url: string;
997
+ }[];
998
+ functionParameter: {
999
+ number: {
1000
+ name: string;
1001
+ detail: string;
1002
+ };
1003
+ numDigits: {
1004
+ name: string;
1005
+ detail: string;
1006
+ };
1007
+ };
1008
+ };
1009
+ SEC: {
1010
+ description: string;
1011
+ abstract: string;
1012
+ links: {
1013
+ title: string;
1014
+ url: string;
1015
+ }[];
1016
+ functionParameter: {
1017
+ number: {
1018
+ name: string;
1019
+ detail: string;
1020
+ };
1021
+ };
1022
+ };
1023
+ SECH: {
1024
+ description: string;
1025
+ abstract: string;
1026
+ links: {
1027
+ title: string;
1028
+ url: string;
1029
+ }[];
1030
+ functionParameter: {
1031
+ number: {
1032
+ name: string;
1033
+ detail: string;
1034
+ };
1035
+ };
1036
+ };
1037
+ SERIESSUM: {
1038
+ description: string;
1039
+ abstract: string;
1040
+ links: {
1041
+ title: string;
1042
+ url: string;
1043
+ }[];
1044
+ functionParameter: {
1045
+ x: {
1046
+ name: string;
1047
+ detail: string;
1048
+ };
1049
+ n: {
1050
+ name: string;
1051
+ detail: string;
1052
+ };
1053
+ m: {
1054
+ name: string;
1055
+ detail: string;
1056
+ };
1057
+ coefficients: {
1058
+ name: string;
1059
+ detail: string;
1060
+ };
1061
+ };
1062
+ };
1063
+ SEQUENCE: {
1064
+ description: string;
1065
+ abstract: string;
1066
+ links: {
1067
+ title: string;
1068
+ url: string;
1069
+ }[];
1070
+ functionParameter: {
1071
+ rows: {
1072
+ name: string;
1073
+ detail: string;
1074
+ };
1075
+ columns: {
1076
+ name: string;
1077
+ detail: string;
1078
+ };
1079
+ start: {
1080
+ name: string;
1081
+ detail: string;
1082
+ };
1083
+ step: {
1084
+ name: string;
1085
+ detail: string;
1086
+ };
1087
+ };
1088
+ };
1089
+ SIGN: {
1090
+ description: string;
1091
+ abstract: string;
1092
+ links: {
1093
+ title: string;
1094
+ url: string;
1095
+ }[];
1096
+ functionParameter: {
1097
+ number: {
1098
+ name: string;
1099
+ detail: string;
1100
+ };
1101
+ };
1102
+ };
1103
+ SIN: {
1104
+ description: string;
1105
+ abstract: string;
1106
+ links: {
1107
+ title: string;
1108
+ url: string;
1109
+ }[];
1110
+ functionParameter: {
1111
+ number: {
1112
+ name: string;
1113
+ detail: string;
1114
+ };
1115
+ };
1116
+ };
1117
+ SINH: {
1118
+ description: string;
1119
+ abstract: string;
1120
+ links: {
1121
+ title: string;
1122
+ url: string;
1123
+ }[];
1124
+ functionParameter: {
1125
+ number: {
1126
+ name: string;
1127
+ detail: string;
1128
+ };
1129
+ };
1130
+ };
1131
+ SQRT: {
1132
+ description: string;
1133
+ abstract: string;
1134
+ links: {
1135
+ title: string;
1136
+ url: string;
1137
+ }[];
1138
+ functionParameter: {
1139
+ number: {
1140
+ name: string;
1141
+ detail: string;
1142
+ };
1143
+ };
1144
+ };
1145
+ SQRTPI: {
1146
+ description: string;
1147
+ abstract: string;
1148
+ links: {
1149
+ title: string;
1150
+ url: string;
1151
+ }[];
1152
+ functionParameter: {
1153
+ number: {
1154
+ name: string;
1155
+ detail: string;
1156
+ };
1157
+ };
1158
+ };
1159
+ SUBTOTAL: {
1160
+ description: string;
1161
+ abstract: string;
1162
+ links: {
1163
+ title: string;
1164
+ url: string;
1165
+ }[];
1166
+ functionParameter: {
1167
+ functionNum: {
1168
+ name: string;
1169
+ detail: string;
1170
+ };
1171
+ ref1: {
1172
+ name: string;
1173
+ detail: string;
1174
+ };
1175
+ ref2: {
1176
+ name: string;
1177
+ detail: string;
1178
+ };
1179
+ };
1180
+ };
1181
+ SUM: {
1182
+ description: string;
1183
+ abstract: string;
1184
+ links: {
1185
+ title: string;
1186
+ url: string;
1187
+ }[];
1188
+ functionParameter: {
1189
+ number1: {
1190
+ name: string;
1191
+ detail: string;
1192
+ };
1193
+ number2: {
1194
+ name: string;
1195
+ detail: string;
1196
+ };
1197
+ };
1198
+ };
1199
+ SUMIF: {
1200
+ description: string;
1201
+ abstract: string;
1202
+ links: {
1203
+ title: string;
1204
+ url: string;
1205
+ }[];
1206
+ functionParameter: {
1207
+ range: {
1208
+ name: string;
1209
+ detail: string;
1210
+ };
1211
+ criteria: {
1212
+ name: string;
1213
+ detail: string;
1214
+ };
1215
+ sumRange: {
1216
+ name: string;
1217
+ detail: string;
1218
+ };
1219
+ };
1220
+ };
1221
+ SUMIFS: {
1222
+ description: string;
1223
+ abstract: string;
1224
+ links: {
1225
+ title: string;
1226
+ url: string;
1227
+ }[];
1228
+ functionParameter: {
1229
+ sumRange: {
1230
+ name: string;
1231
+ detail: string;
1232
+ };
1233
+ criteriaRange1: {
1234
+ name: string;
1235
+ detail: string;
1236
+ };
1237
+ criteria1: {
1238
+ name: string;
1239
+ detail: string;
1240
+ };
1241
+ criteriaRange2: {
1242
+ name: string;
1243
+ detail: string;
1244
+ };
1245
+ criteria2: {
1246
+ name: string;
1247
+ detail: string;
1248
+ };
1249
+ };
1250
+ };
1251
+ SUMPRODUCT: {
1252
+ description: string;
1253
+ abstract: string;
1254
+ links: {
1255
+ title: string;
1256
+ url: string;
1257
+ }[];
1258
+ functionParameter: {
1259
+ array1: {
1260
+ name: string;
1261
+ detail: string;
1262
+ };
1263
+ array2: {
1264
+ name: string;
1265
+ detail: string;
1266
+ };
1267
+ };
1268
+ };
1269
+ SUMSQ: {
1270
+ description: string;
1271
+ abstract: string;
1272
+ links: {
1273
+ title: string;
1274
+ url: string;
1275
+ }[];
1276
+ functionParameter: {
1277
+ number1: {
1278
+ name: string;
1279
+ detail: string;
1280
+ };
1281
+ number2: {
1282
+ name: string;
1283
+ detail: string;
1284
+ };
1285
+ };
1286
+ };
1287
+ SUMX2MY2: {
1288
+ description: string;
1289
+ abstract: string;
1290
+ links: {
1291
+ title: string;
1292
+ url: string;
1293
+ }[];
1294
+ functionParameter: {
1295
+ arrayX: {
1296
+ name: string;
1297
+ detail: string;
1298
+ };
1299
+ arrayY: {
1300
+ name: string;
1301
+ detail: string;
1302
+ };
1303
+ };
1304
+ };
1305
+ SUMX2PY2: {
1306
+ description: string;
1307
+ abstract: string;
1308
+ links: {
1309
+ title: string;
1310
+ url: string;
1311
+ }[];
1312
+ functionParameter: {
1313
+ arrayX: {
1314
+ name: string;
1315
+ detail: string;
1316
+ };
1317
+ arrayY: {
1318
+ name: string;
1319
+ detail: string;
1320
+ };
1321
+ };
1322
+ };
1323
+ SUMXMY2: {
1324
+ description: string;
1325
+ abstract: string;
1326
+ links: {
1327
+ title: string;
1328
+ url: string;
1329
+ }[];
1330
+ functionParameter: {
1331
+ arrayX: {
1332
+ name: string;
1333
+ detail: string;
1334
+ };
1335
+ arrayY: {
1336
+ name: string;
1337
+ detail: string;
1338
+ };
1339
+ };
1340
+ };
1341
+ TAN: {
1342
+ description: string;
1343
+ abstract: string;
1344
+ links: {
1345
+ title: string;
1346
+ url: string;
1347
+ }[];
1348
+ functionParameter: {
1349
+ number: {
1350
+ name: string;
1351
+ detail: string;
1352
+ };
1353
+ };
1354
+ };
1355
+ TANH: {
1356
+ description: string;
1357
+ abstract: string;
1358
+ links: {
1359
+ title: string;
1360
+ url: string;
1361
+ }[];
1362
+ functionParameter: {
1363
+ number: {
1364
+ name: string;
1365
+ detail: string;
1366
+ };
1367
+ };
1368
+ };
1369
+ TRUNC: {
1370
+ description: string;
1371
+ abstract: string;
1372
+ links: {
1373
+ title: string;
1374
+ url: string;
1375
+ }[];
1376
+ functionParameter: {
1377
+ number: {
1378
+ name: string;
1379
+ detail: string;
1380
+ };
1381
+ numDigits: {
1382
+ name: string;
1383
+ detail: string;
1384
+ };
1385
+ };
1386
+ };
1387
+ };
1388
+ export default _default;