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