@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,1188 @@
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
+ AVEDEV: {
18
+ description: string;
19
+ abstract: string;
20
+ links: {
21
+ title: string;
22
+ url: string;
23
+ }[];
24
+ functionParameter: {
25
+ number1: {
26
+ name: string;
27
+ detail: string;
28
+ };
29
+ number2: {
30
+ name: string;
31
+ detail: string;
32
+ };
33
+ };
34
+ };
35
+ AVERAGE: {
36
+ description: string;
37
+ abstract: string;
38
+ links: {
39
+ title: string;
40
+ url: string;
41
+ }[];
42
+ functionParameter: {
43
+ number1: {
44
+ name: string;
45
+ detail: string;
46
+ };
47
+ number2: {
48
+ name: string;
49
+ detail: string;
50
+ };
51
+ };
52
+ };
53
+ AVERAGEA: {
54
+ description: string;
55
+ abstract: string;
56
+ links: {
57
+ title: string;
58
+ url: string;
59
+ }[];
60
+ functionParameter: {
61
+ value1: {
62
+ name: string;
63
+ detail: string;
64
+ };
65
+ value2: {
66
+ name: string;
67
+ detail: string;
68
+ };
69
+ };
70
+ };
71
+ AVERAGEIF: {
72
+ description: string;
73
+ abstract: string;
74
+ links: {
75
+ title: string;
76
+ url: string;
77
+ }[];
78
+ functionParameter: {
79
+ range: {
80
+ name: string;
81
+ detail: string;
82
+ };
83
+ criteria: {
84
+ name: string;
85
+ detail: string;
86
+ };
87
+ averageRange: {
88
+ name: string;
89
+ detail: string;
90
+ };
91
+ };
92
+ };
93
+ AVERAGEIFS: {
94
+ description: string;
95
+ abstract: string;
96
+ links: {
97
+ title: string;
98
+ url: string;
99
+ }[];
100
+ functionParameter: {
101
+ averageRange: {
102
+ name: string;
103
+ detail: string;
104
+ };
105
+ criteriaRange1: {
106
+ name: string;
107
+ detail: string;
108
+ };
109
+ criteria1: {
110
+ name: string;
111
+ detail: string;
112
+ };
113
+ criteriaRange2: {
114
+ name: string;
115
+ detail: string;
116
+ };
117
+ criteria2: {
118
+ name: string;
119
+ detail: string;
120
+ };
121
+ };
122
+ };
123
+ BETA_DIST: {
124
+ description: string;
125
+ abstract: string;
126
+ links: {
127
+ title: string;
128
+ url: string;
129
+ }[];
130
+ functionParameter: {
131
+ x: {
132
+ name: string;
133
+ detail: string;
134
+ };
135
+ alpha: {
136
+ name: string;
137
+ detail: string;
138
+ };
139
+ beta: {
140
+ name: string;
141
+ detail: string;
142
+ };
143
+ cumulative: {
144
+ name: string;
145
+ detail: string;
146
+ };
147
+ A: {
148
+ name: string;
149
+ detail: string;
150
+ };
151
+ B: {
152
+ name: string;
153
+ detail: string;
154
+ };
155
+ };
156
+ };
157
+ BETA_INV: {
158
+ description: string;
159
+ abstract: string;
160
+ links: {
161
+ title: string;
162
+ url: string;
163
+ }[];
164
+ functionParameter: {
165
+ probability: {
166
+ name: string;
167
+ detail: string;
168
+ };
169
+ alpha: {
170
+ name: string;
171
+ detail: string;
172
+ };
173
+ beta: {
174
+ name: string;
175
+ detail: string;
176
+ };
177
+ A: {
178
+ name: string;
179
+ detail: string;
180
+ };
181
+ B: {
182
+ name: string;
183
+ detail: string;
184
+ };
185
+ };
186
+ };
187
+ BINOM_DIST: {
188
+ description: string;
189
+ abstract: string;
190
+ links: {
191
+ title: string;
192
+ url: string;
193
+ }[];
194
+ functionParameter: {
195
+ numberS: {
196
+ name: string;
197
+ detail: string;
198
+ };
199
+ trials: {
200
+ name: string;
201
+ detail: string;
202
+ };
203
+ probabilityS: {
204
+ name: string;
205
+ detail: string;
206
+ };
207
+ cumulative: {
208
+ name: string;
209
+ detail: string;
210
+ };
211
+ };
212
+ };
213
+ BINOM_DIST_RANGE: {
214
+ description: string;
215
+ abstract: string;
216
+ links: {
217
+ title: string;
218
+ url: string;
219
+ }[];
220
+ functionParameter: {
221
+ trials: {
222
+ name: string;
223
+ detail: string;
224
+ };
225
+ probabilityS: {
226
+ name: string;
227
+ detail: string;
228
+ };
229
+ numberS: {
230
+ name: string;
231
+ detail: string;
232
+ };
233
+ numberS2: {
234
+ name: string;
235
+ detail: string;
236
+ };
237
+ };
238
+ };
239
+ BINOM_INV: {
240
+ description: string;
241
+ abstract: string;
242
+ links: {
243
+ title: string;
244
+ url: string;
245
+ }[];
246
+ functionParameter: {
247
+ trials: {
248
+ name: string;
249
+ detail: string;
250
+ };
251
+ probabilityS: {
252
+ name: string;
253
+ detail: string;
254
+ };
255
+ alpha: {
256
+ name: string;
257
+ detail: string;
258
+ };
259
+ };
260
+ };
261
+ CHISQ_DIST: {
262
+ description: string;
263
+ abstract: string;
264
+ links: {
265
+ title: string;
266
+ url: string;
267
+ }[];
268
+ functionParameter: {
269
+ x: {
270
+ name: string;
271
+ detail: string;
272
+ };
273
+ degFreedom: {
274
+ name: string;
275
+ detail: string;
276
+ };
277
+ cumulative: {
278
+ name: string;
279
+ detail: string;
280
+ };
281
+ };
282
+ };
283
+ CHISQ_DIST_RT: {
284
+ description: string;
285
+ abstract: string;
286
+ links: {
287
+ title: string;
288
+ url: string;
289
+ }[];
290
+ functionParameter: {
291
+ x: {
292
+ name: string;
293
+ detail: string;
294
+ };
295
+ degFreedom: {
296
+ name: string;
297
+ detail: string;
298
+ };
299
+ };
300
+ };
301
+ CHISQ_INV: {
302
+ description: string;
303
+ abstract: string;
304
+ links: {
305
+ title: string;
306
+ url: string;
307
+ }[];
308
+ functionParameter: {
309
+ probability: {
310
+ name: string;
311
+ detail: string;
312
+ };
313
+ degFreedom: {
314
+ name: string;
315
+ detail: string;
316
+ };
317
+ };
318
+ };
319
+ CHISQ_INV_RT: {
320
+ description: string;
321
+ abstract: string;
322
+ links: {
323
+ title: string;
324
+ url: string;
325
+ }[];
326
+ functionParameter: {
327
+ probability: {
328
+ name: string;
329
+ detail: string;
330
+ };
331
+ degFreedom: {
332
+ name: string;
333
+ detail: string;
334
+ };
335
+ };
336
+ };
337
+ CHISQ_TEST: {
338
+ description: string;
339
+ abstract: string;
340
+ links: {
341
+ title: string;
342
+ url: string;
343
+ }[];
344
+ functionParameter: {
345
+ actualRange: {
346
+ name: string;
347
+ detail: string;
348
+ };
349
+ expectedRange: {
350
+ name: string;
351
+ detail: string;
352
+ };
353
+ };
354
+ };
355
+ CONFIDENCE_NORM: {
356
+ description: string;
357
+ abstract: string;
358
+ links: {
359
+ title: string;
360
+ url: string;
361
+ }[];
362
+ functionParameter: {
363
+ alpha: {
364
+ name: string;
365
+ detail: string;
366
+ };
367
+ standardDev: {
368
+ name: string;
369
+ detail: string;
370
+ };
371
+ size: {
372
+ name: string;
373
+ detail: string;
374
+ };
375
+ };
376
+ };
377
+ CONFIDENCE_T: {
378
+ description: string;
379
+ abstract: string;
380
+ links: {
381
+ title: string;
382
+ url: string;
383
+ }[];
384
+ functionParameter: {
385
+ alpha: {
386
+ name: string;
387
+ detail: string;
388
+ };
389
+ standardDev: {
390
+ name: string;
391
+ detail: string;
392
+ };
393
+ size: {
394
+ name: string;
395
+ detail: string;
396
+ };
397
+ };
398
+ };
399
+ CORREL: {
400
+ description: string;
401
+ abstract: string;
402
+ links: {
403
+ title: string;
404
+ url: string;
405
+ }[];
406
+ functionParameter: {
407
+ array1: {
408
+ name: string;
409
+ detail: string;
410
+ };
411
+ array2: {
412
+ name: string;
413
+ detail: string;
414
+ };
415
+ };
416
+ };
417
+ COUNT: {
418
+ description: string;
419
+ abstract: string;
420
+ links: {
421
+ title: string;
422
+ url: string;
423
+ }[];
424
+ functionParameter: {
425
+ value1: {
426
+ name: string;
427
+ detail: string;
428
+ };
429
+ value2: {
430
+ name: string;
431
+ detail: string;
432
+ };
433
+ };
434
+ };
435
+ COUNTA: {
436
+ description: string;
437
+ abstract: string;
438
+ links: {
439
+ title: string;
440
+ url: string;
441
+ }[];
442
+ functionParameter: {
443
+ number1: {
444
+ name: string;
445
+ detail: string;
446
+ };
447
+ number2: {
448
+ name: string;
449
+ detail: string;
450
+ };
451
+ };
452
+ };
453
+ COUNTBLANK: {
454
+ description: string;
455
+ abstract: string;
456
+ links: {
457
+ title: string;
458
+ url: string;
459
+ }[];
460
+ functionParameter: {
461
+ range: {
462
+ name: string;
463
+ detail: string;
464
+ };
465
+ };
466
+ };
467
+ COUNTIF: {
468
+ description: string;
469
+ abstract: string;
470
+ links: {
471
+ title: string;
472
+ url: string;
473
+ }[];
474
+ functionParameter: {
475
+ range: {
476
+ name: string;
477
+ detail: string;
478
+ };
479
+ criteria: {
480
+ name: string;
481
+ detail: string;
482
+ };
483
+ };
484
+ };
485
+ COUNTIFS: {
486
+ description: string;
487
+ abstract: string;
488
+ links: {
489
+ title: string;
490
+ url: string;
491
+ }[];
492
+ functionParameter: {
493
+ criteriaRange1: {
494
+ name: string;
495
+ detail: string;
496
+ };
497
+ criteria1: {
498
+ name: string;
499
+ detail: string;
500
+ };
501
+ criteriaRange2: {
502
+ name: string;
503
+ detail: string;
504
+ };
505
+ criteria2: {
506
+ name: string;
507
+ detail: string;
508
+ };
509
+ };
510
+ };
511
+ COVARIANCE_P: {
512
+ description: string;
513
+ abstract: string;
514
+ links: {
515
+ title: string;
516
+ url: string;
517
+ }[];
518
+ functionParameter: {
519
+ array1: {
520
+ name: string;
521
+ detail: string;
522
+ };
523
+ array2: {
524
+ name: string;
525
+ detail: string;
526
+ };
527
+ };
528
+ };
529
+ COVARIANCE_S: {
530
+ description: string;
531
+ abstract: string;
532
+ links: {
533
+ title: string;
534
+ url: string;
535
+ }[];
536
+ functionParameter: {
537
+ array1: {
538
+ name: string;
539
+ detail: string;
540
+ };
541
+ array2: {
542
+ name: string;
543
+ detail: string;
544
+ };
545
+ };
546
+ };
547
+ DEVSQ: {
548
+ description: string;
549
+ abstract: string;
550
+ links: {
551
+ title: string;
552
+ url: string;
553
+ }[];
554
+ functionParameter: {
555
+ number1: {
556
+ name: string;
557
+ detail: string;
558
+ };
559
+ number2: {
560
+ name: string;
561
+ detail: string;
562
+ };
563
+ };
564
+ };
565
+ EXPON_DIST: {
566
+ description: string;
567
+ abstract: string;
568
+ links: {
569
+ title: string;
570
+ url: string;
571
+ }[];
572
+ functionParameter: {
573
+ x: {
574
+ name: string;
575
+ detail: string;
576
+ };
577
+ lambda: {
578
+ name: string;
579
+ detail: string;
580
+ };
581
+ cumulative: {
582
+ name: string;
583
+ detail: string;
584
+ };
585
+ };
586
+ };
587
+ F_DIST: {
588
+ description: string;
589
+ abstract: string;
590
+ links: {
591
+ title: string;
592
+ url: string;
593
+ }[];
594
+ functionParameter: {
595
+ x: {
596
+ name: string;
597
+ detail: string;
598
+ };
599
+ degFreedom1: {
600
+ name: string;
601
+ detail: string;
602
+ };
603
+ degFreedom2: {
604
+ name: string;
605
+ detail: string;
606
+ };
607
+ cumulative: {
608
+ name: string;
609
+ detail: string;
610
+ };
611
+ };
612
+ };
613
+ F_DIST_RT: {
614
+ description: string;
615
+ abstract: string;
616
+ links: {
617
+ title: string;
618
+ url: string;
619
+ }[];
620
+ functionParameter: {
621
+ x: {
622
+ name: string;
623
+ detail: string;
624
+ };
625
+ degFreedom1: {
626
+ name: string;
627
+ detail: string;
628
+ };
629
+ degFreedom2: {
630
+ name: string;
631
+ detail: string;
632
+ };
633
+ };
634
+ };
635
+ F_INV: {
636
+ description: string;
637
+ abstract: string;
638
+ links: {
639
+ title: string;
640
+ url: string;
641
+ }[];
642
+ functionParameter: {
643
+ probability: {
644
+ name: string;
645
+ detail: string;
646
+ };
647
+ degFreedom1: {
648
+ name: string;
649
+ detail: string;
650
+ };
651
+ degFreedom2: {
652
+ name: string;
653
+ detail: string;
654
+ };
655
+ };
656
+ };
657
+ F_INV_RT: {
658
+ description: string;
659
+ abstract: string;
660
+ links: {
661
+ title: string;
662
+ url: string;
663
+ }[];
664
+ functionParameter: {
665
+ probability: {
666
+ name: string;
667
+ detail: string;
668
+ };
669
+ degFreedom1: {
670
+ name: string;
671
+ detail: string;
672
+ };
673
+ degFreedom2: {
674
+ name: string;
675
+ detail: string;
676
+ };
677
+ };
678
+ };
679
+ F_TEST: {
680
+ description: string;
681
+ abstract: string;
682
+ links: {
683
+ title: string;
684
+ url: string;
685
+ }[];
686
+ functionParameter: {
687
+ array1: {
688
+ name: string;
689
+ detail: string;
690
+ };
691
+ array2: {
692
+ name: string;
693
+ detail: string;
694
+ };
695
+ };
696
+ };
697
+ FISHER: {
698
+ description: string;
699
+ abstract: string;
700
+ links: {
701
+ title: string;
702
+ url: string;
703
+ }[];
704
+ functionParameter: {
705
+ x: {
706
+ name: string;
707
+ detail: string;
708
+ };
709
+ };
710
+ };
711
+ FISHERINV: {
712
+ description: string;
713
+ abstract: string;
714
+ links: {
715
+ title: string;
716
+ url: string;
717
+ }[];
718
+ functionParameter: {
719
+ y: {
720
+ name: string;
721
+ detail: string;
722
+ };
723
+ };
724
+ };
725
+ FORECAST: {
726
+ description: string;
727
+ abstract: string;
728
+ links: {
729
+ title: string;
730
+ url: string;
731
+ }[];
732
+ functionParameter: {
733
+ x: {
734
+ name: string;
735
+ detail: string;
736
+ };
737
+ knownYs: {
738
+ name: string;
739
+ detail: string;
740
+ };
741
+ knownXs: {
742
+ name: string;
743
+ detail: string;
744
+ };
745
+ };
746
+ };
747
+ FORECAST_LINEAR: {
748
+ description: string;
749
+ abstract: string;
750
+ links: {
751
+ title: string;
752
+ url: string;
753
+ }[];
754
+ functionParameter: {
755
+ x: {
756
+ name: string;
757
+ detail: string;
758
+ };
759
+ knownYs: {
760
+ name: string;
761
+ detail: string;
762
+ };
763
+ knownXs: {
764
+ name: string;
765
+ detail: string;
766
+ };
767
+ };
768
+ };
769
+ INTERCEPT: {
770
+ description: string;
771
+ abstract: string;
772
+ links: {
773
+ title: string;
774
+ url: string;
775
+ }[];
776
+ functionParameter: {
777
+ knownYs: {
778
+ name: string;
779
+ detail: string;
780
+ };
781
+ knownXs: {
782
+ name: string;
783
+ detail: string;
784
+ };
785
+ };
786
+ };
787
+ MAX: {
788
+ description: string;
789
+ abstract: string;
790
+ links: {
791
+ title: string;
792
+ url: string;
793
+ }[];
794
+ functionParameter: {
795
+ number1: {
796
+ name: string;
797
+ detail: string;
798
+ };
799
+ number2: {
800
+ name: string;
801
+ detail: string;
802
+ };
803
+ };
804
+ };
805
+ MAXA: {
806
+ description: string;
807
+ abstract: string;
808
+ links: {
809
+ title: string;
810
+ url: string;
811
+ }[];
812
+ functionParameter: {
813
+ value1: {
814
+ name: string;
815
+ detail: string;
816
+ };
817
+ value2: {
818
+ name: string;
819
+ detail: string;
820
+ };
821
+ };
822
+ };
823
+ MAXIFS: {
824
+ description: string;
825
+ abstract: string;
826
+ links: {
827
+ title: string;
828
+ url: string;
829
+ }[];
830
+ functionParameter: {
831
+ maxRange: {
832
+ name: string;
833
+ detail: string;
834
+ };
835
+ criteriaRange1: {
836
+ name: string;
837
+ detail: string;
838
+ };
839
+ criteria1: {
840
+ name: string;
841
+ detail: string;
842
+ };
843
+ criteriaRange2: {
844
+ name: string;
845
+ detail: string;
846
+ };
847
+ criteria2: {
848
+ name: string;
849
+ detail: string;
850
+ };
851
+ };
852
+ };
853
+ MIN: {
854
+ description: string;
855
+ abstract: string;
856
+ links: {
857
+ title: string;
858
+ url: string;
859
+ }[];
860
+ functionParameter: {
861
+ number1: {
862
+ name: string;
863
+ detail: string;
864
+ };
865
+ number2: {
866
+ name: string;
867
+ detail: string;
868
+ };
869
+ };
870
+ };
871
+ MINA: {
872
+ description: string;
873
+ abstract: string;
874
+ links: {
875
+ title: string;
876
+ url: string;
877
+ }[];
878
+ functionParameter: {
879
+ value1: {
880
+ name: string;
881
+ detail: string;
882
+ };
883
+ value2: {
884
+ name: string;
885
+ detail: string;
886
+ };
887
+ };
888
+ };
889
+ MINIFS: {
890
+ description: string;
891
+ abstract: string;
892
+ links: {
893
+ title: string;
894
+ url: string;
895
+ }[];
896
+ functionParameter: {
897
+ minRange: {
898
+ name: string;
899
+ detail: string;
900
+ };
901
+ criteriaRange1: {
902
+ name: string;
903
+ detail: string;
904
+ };
905
+ criteria1: {
906
+ name: string;
907
+ detail: string;
908
+ };
909
+ criteriaRange2: {
910
+ name: string;
911
+ detail: string;
912
+ };
913
+ criteria2: {
914
+ name: string;
915
+ detail: string;
916
+ };
917
+ };
918
+ };
919
+ NORM_DIST: {
920
+ description: string;
921
+ abstract: string;
922
+ links: {
923
+ title: string;
924
+ url: string;
925
+ }[];
926
+ functionParameter: {
927
+ x: {
928
+ name: string;
929
+ detail: string;
930
+ };
931
+ mean: {
932
+ name: string;
933
+ detail: string;
934
+ };
935
+ standardDev: {
936
+ name: string;
937
+ detail: string;
938
+ };
939
+ cumulative: {
940
+ name: string;
941
+ detail: string;
942
+ };
943
+ };
944
+ };
945
+ NORM_INV: {
946
+ description: string;
947
+ abstract: string;
948
+ links: {
949
+ title: string;
950
+ url: string;
951
+ }[];
952
+ functionParameter: {
953
+ probability: {
954
+ name: string;
955
+ detail: string;
956
+ };
957
+ mean: {
958
+ name: string;
959
+ detail: string;
960
+ };
961
+ standardDev: {
962
+ name: string;
963
+ detail: string;
964
+ };
965
+ };
966
+ };
967
+ NORM_S_DIST: {
968
+ description: string;
969
+ abstract: string;
970
+ links: {
971
+ title: string;
972
+ url: string;
973
+ }[];
974
+ functionParameter: {
975
+ z: {
976
+ name: string;
977
+ detail: string;
978
+ };
979
+ cumulative: {
980
+ name: string;
981
+ detail: string;
982
+ };
983
+ };
984
+ };
985
+ NORM_S_INV: {
986
+ description: string;
987
+ abstract: string;
988
+ links: {
989
+ title: string;
990
+ url: string;
991
+ }[];
992
+ functionParameter: {
993
+ probability: {
994
+ name: string;
995
+ detail: string;
996
+ };
997
+ };
998
+ };
999
+ RANK_AVG: {
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
+ ref: {
1012
+ name: string;
1013
+ detail: string;
1014
+ };
1015
+ order: {
1016
+ name: string;
1017
+ detail: string;
1018
+ };
1019
+ };
1020
+ };
1021
+ RANK_EQ: {
1022
+ description: string;
1023
+ abstract: string;
1024
+ links: {
1025
+ title: string;
1026
+ url: string;
1027
+ }[];
1028
+ functionParameter: {
1029
+ number: {
1030
+ name: string;
1031
+ detail: string;
1032
+ };
1033
+ ref: {
1034
+ name: string;
1035
+ detail: string;
1036
+ };
1037
+ order: {
1038
+ name: string;
1039
+ detail: string;
1040
+ };
1041
+ };
1042
+ };
1043
+ STDEV_P: {
1044
+ description: string;
1045
+ abstract: string;
1046
+ links: {
1047
+ title: string;
1048
+ url: string;
1049
+ }[];
1050
+ functionParameter: {
1051
+ number1: {
1052
+ name: string;
1053
+ detail: string;
1054
+ };
1055
+ number2: {
1056
+ name: string;
1057
+ detail: string;
1058
+ };
1059
+ };
1060
+ };
1061
+ STDEV_S: {
1062
+ description: string;
1063
+ abstract: string;
1064
+ links: {
1065
+ title: string;
1066
+ url: string;
1067
+ }[];
1068
+ functionParameter: {
1069
+ number1: {
1070
+ name: string;
1071
+ detail: string;
1072
+ };
1073
+ number2: {
1074
+ name: string;
1075
+ detail: string;
1076
+ };
1077
+ };
1078
+ };
1079
+ STDEVA: {
1080
+ description: string;
1081
+ abstract: string;
1082
+ links: {
1083
+ title: string;
1084
+ url: string;
1085
+ }[];
1086
+ functionParameter: {
1087
+ value1: {
1088
+ name: string;
1089
+ detail: string;
1090
+ };
1091
+ value2: {
1092
+ name: string;
1093
+ detail: string;
1094
+ };
1095
+ };
1096
+ };
1097
+ STDEVPA: {
1098
+ description: string;
1099
+ abstract: string;
1100
+ links: {
1101
+ title: string;
1102
+ url: string;
1103
+ }[];
1104
+ functionParameter: {
1105
+ value1: {
1106
+ name: string;
1107
+ detail: string;
1108
+ };
1109
+ value2: {
1110
+ name: string;
1111
+ detail: string;
1112
+ };
1113
+ };
1114
+ };
1115
+ VAR_P: {
1116
+ description: string;
1117
+ abstract: string;
1118
+ links: {
1119
+ title: string;
1120
+ url: string;
1121
+ }[];
1122
+ functionParameter: {
1123
+ number1: {
1124
+ name: string;
1125
+ detail: string;
1126
+ };
1127
+ number2: {
1128
+ name: string;
1129
+ detail: string;
1130
+ };
1131
+ };
1132
+ };
1133
+ VAR_S: {
1134
+ description: string;
1135
+ abstract: string;
1136
+ links: {
1137
+ title: string;
1138
+ url: string;
1139
+ }[];
1140
+ functionParameter: {
1141
+ number1: {
1142
+ name: string;
1143
+ detail: string;
1144
+ };
1145
+ number2: {
1146
+ name: string;
1147
+ detail: string;
1148
+ };
1149
+ };
1150
+ };
1151
+ VARA: {
1152
+ description: string;
1153
+ abstract: string;
1154
+ links: {
1155
+ title: string;
1156
+ url: string;
1157
+ }[];
1158
+ functionParameter: {
1159
+ value1: {
1160
+ name: string;
1161
+ detail: string;
1162
+ };
1163
+ value2: {
1164
+ name: string;
1165
+ detail: string;
1166
+ };
1167
+ };
1168
+ };
1169
+ VARPA: {
1170
+ description: string;
1171
+ abstract: string;
1172
+ links: {
1173
+ title: string;
1174
+ url: string;
1175
+ }[];
1176
+ functionParameter: {
1177
+ value1: {
1178
+ name: string;
1179
+ detail: string;
1180
+ };
1181
+ value2: {
1182
+ name: string;
1183
+ detail: string;
1184
+ };
1185
+ };
1186
+ };
1187
+ };
1188
+ export default _default;