@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,762 @@
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
+ BETADIST: {
18
+ description: string;
19
+ abstract: string;
20
+ links: {
21
+ title: string;
22
+ url: string;
23
+ }[];
24
+ functionParameter: {
25
+ x: {
26
+ name: string;
27
+ detail: string;
28
+ };
29
+ alpha: {
30
+ name: string;
31
+ detail: string;
32
+ };
33
+ beta: {
34
+ name: string;
35
+ detail: string;
36
+ };
37
+ A: {
38
+ name: string;
39
+ detail: string;
40
+ };
41
+ B: {
42
+ name: string;
43
+ detail: string;
44
+ };
45
+ };
46
+ };
47
+ BETAINV: {
48
+ description: string;
49
+ abstract: string;
50
+ links: {
51
+ title: string;
52
+ url: string;
53
+ }[];
54
+ functionParameter: {
55
+ probability: {
56
+ name: string;
57
+ detail: string;
58
+ };
59
+ alpha: {
60
+ name: string;
61
+ detail: string;
62
+ };
63
+ beta: {
64
+ name: string;
65
+ detail: string;
66
+ };
67
+ A: {
68
+ name: string;
69
+ detail: string;
70
+ };
71
+ B: {
72
+ name: string;
73
+ detail: string;
74
+ };
75
+ };
76
+ };
77
+ BINOMDIST: {
78
+ description: string;
79
+ abstract: string;
80
+ links: {
81
+ title: string;
82
+ url: string;
83
+ }[];
84
+ functionParameter: {
85
+ numberS: {
86
+ name: string;
87
+ detail: string;
88
+ };
89
+ trials: {
90
+ name: string;
91
+ detail: string;
92
+ };
93
+ probabilityS: {
94
+ name: string;
95
+ detail: string;
96
+ };
97
+ cumulative: {
98
+ name: string;
99
+ detail: string;
100
+ };
101
+ };
102
+ };
103
+ CHIDIST: {
104
+ description: string;
105
+ abstract: string;
106
+ links: {
107
+ title: string;
108
+ url: string;
109
+ }[];
110
+ functionParameter: {
111
+ x: {
112
+ name: string;
113
+ detail: string;
114
+ };
115
+ degFreedom: {
116
+ name: string;
117
+ detail: string;
118
+ };
119
+ };
120
+ };
121
+ CHIINV: {
122
+ description: string;
123
+ abstract: string;
124
+ links: {
125
+ title: string;
126
+ url: string;
127
+ }[];
128
+ functionParameter: {
129
+ probability: {
130
+ name: string;
131
+ detail: string;
132
+ };
133
+ degFreedom: {
134
+ name: string;
135
+ detail: string;
136
+ };
137
+ };
138
+ };
139
+ CHITEST: {
140
+ description: string;
141
+ abstract: string;
142
+ links: {
143
+ title: string;
144
+ url: string;
145
+ }[];
146
+ functionParameter: {
147
+ actualRange: {
148
+ name: string;
149
+ detail: string;
150
+ };
151
+ expectedRange: {
152
+ name: string;
153
+ detail: string;
154
+ };
155
+ };
156
+ };
157
+ CONFIDENCE: {
158
+ description: string;
159
+ abstract: string;
160
+ links: {
161
+ title: string;
162
+ url: string;
163
+ }[];
164
+ functionParameter: {
165
+ alpha: {
166
+ name: string;
167
+ detail: string;
168
+ };
169
+ standardDev: {
170
+ name: string;
171
+ detail: string;
172
+ };
173
+ size: {
174
+ name: string;
175
+ detail: string;
176
+ };
177
+ };
178
+ };
179
+ COVAR: {
180
+ description: string;
181
+ abstract: string;
182
+ links: {
183
+ title: string;
184
+ url: string;
185
+ }[];
186
+ functionParameter: {
187
+ array1: {
188
+ name: string;
189
+ detail: string;
190
+ };
191
+ array2: {
192
+ name: string;
193
+ detail: string;
194
+ };
195
+ };
196
+ };
197
+ CRITBINOM: {
198
+ description: string;
199
+ abstract: string;
200
+ links: {
201
+ title: string;
202
+ url: string;
203
+ }[];
204
+ functionParameter: {
205
+ trials: {
206
+ name: string;
207
+ detail: string;
208
+ };
209
+ probabilityS: {
210
+ name: string;
211
+ detail: string;
212
+ };
213
+ alpha: {
214
+ name: string;
215
+ detail: string;
216
+ };
217
+ };
218
+ };
219
+ EXPONDIST: {
220
+ description: string;
221
+ abstract: string;
222
+ links: {
223
+ title: string;
224
+ url: string;
225
+ }[];
226
+ functionParameter: {
227
+ x: {
228
+ name: string;
229
+ detail: string;
230
+ };
231
+ lambda: {
232
+ name: string;
233
+ detail: string;
234
+ };
235
+ cumulative: {
236
+ name: string;
237
+ detail: string;
238
+ };
239
+ };
240
+ };
241
+ FDIST: {
242
+ description: string;
243
+ abstract: string;
244
+ links: {
245
+ title: string;
246
+ url: string;
247
+ }[];
248
+ functionParameter: {
249
+ x: {
250
+ name: string;
251
+ detail: string;
252
+ };
253
+ degFreedom1: {
254
+ name: string;
255
+ detail: string;
256
+ };
257
+ degFreedom2: {
258
+ name: string;
259
+ detail: string;
260
+ };
261
+ };
262
+ };
263
+ FINV: {
264
+ description: string;
265
+ abstract: string;
266
+ links: {
267
+ title: string;
268
+ url: string;
269
+ }[];
270
+ functionParameter: {
271
+ probability: {
272
+ name: string;
273
+ detail: string;
274
+ };
275
+ degFreedom1: {
276
+ name: string;
277
+ detail: string;
278
+ };
279
+ degFreedom2: {
280
+ name: string;
281
+ detail: string;
282
+ };
283
+ };
284
+ };
285
+ FTEST: {
286
+ description: string;
287
+ abstract: string;
288
+ links: {
289
+ title: string;
290
+ url: string;
291
+ }[];
292
+ functionParameter: {
293
+ array1: {
294
+ name: string;
295
+ detail: string;
296
+ };
297
+ array2: {
298
+ name: string;
299
+ detail: string;
300
+ };
301
+ };
302
+ };
303
+ GAMMADIST: {
304
+ description: string;
305
+ abstract: string;
306
+ links: {
307
+ title: string;
308
+ url: string;
309
+ }[];
310
+ functionParameter: {
311
+ number1: {
312
+ name: string;
313
+ detail: string;
314
+ };
315
+ number2: {
316
+ name: string;
317
+ detail: string;
318
+ };
319
+ };
320
+ };
321
+ GAMMAINV: {
322
+ description: string;
323
+ abstract: string;
324
+ links: {
325
+ title: string;
326
+ url: string;
327
+ }[];
328
+ functionParameter: {
329
+ number1: {
330
+ name: string;
331
+ detail: string;
332
+ };
333
+ number2: {
334
+ name: string;
335
+ detail: string;
336
+ };
337
+ };
338
+ };
339
+ HYPGEOMDIST: {
340
+ description: string;
341
+ abstract: string;
342
+ links: {
343
+ title: string;
344
+ url: string;
345
+ }[];
346
+ functionParameter: {
347
+ number1: {
348
+ name: string;
349
+ detail: string;
350
+ };
351
+ number2: {
352
+ name: string;
353
+ detail: string;
354
+ };
355
+ };
356
+ };
357
+ LOGINV: {
358
+ description: string;
359
+ abstract: string;
360
+ links: {
361
+ title: string;
362
+ url: string;
363
+ }[];
364
+ functionParameter: {
365
+ number1: {
366
+ name: string;
367
+ detail: string;
368
+ };
369
+ number2: {
370
+ name: string;
371
+ detail: string;
372
+ };
373
+ };
374
+ };
375
+ LOGNORMDIST: {
376
+ description: string;
377
+ abstract: string;
378
+ links: {
379
+ title: string;
380
+ url: string;
381
+ }[];
382
+ functionParameter: {
383
+ number1: {
384
+ name: string;
385
+ detail: string;
386
+ };
387
+ number2: {
388
+ name: string;
389
+ detail: string;
390
+ };
391
+ };
392
+ };
393
+ MODE: {
394
+ description: string;
395
+ abstract: string;
396
+ links: {
397
+ title: string;
398
+ url: string;
399
+ }[];
400
+ functionParameter: {
401
+ number1: {
402
+ name: string;
403
+ detail: string;
404
+ };
405
+ number2: {
406
+ name: string;
407
+ detail: string;
408
+ };
409
+ };
410
+ };
411
+ NEGBINOMDIST: {
412
+ description: string;
413
+ abstract: string;
414
+ links: {
415
+ title: string;
416
+ url: string;
417
+ }[];
418
+ functionParameter: {
419
+ number1: {
420
+ name: string;
421
+ detail: string;
422
+ };
423
+ number2: {
424
+ name: string;
425
+ detail: string;
426
+ };
427
+ };
428
+ };
429
+ NORMDIST: {
430
+ description: string;
431
+ abstract: string;
432
+ links: {
433
+ title: string;
434
+ url: string;
435
+ }[];
436
+ functionParameter: {
437
+ x: {
438
+ name: string;
439
+ detail: string;
440
+ };
441
+ mean: {
442
+ name: string;
443
+ detail: string;
444
+ };
445
+ standardDev: {
446
+ name: string;
447
+ detail: string;
448
+ };
449
+ cumulative: {
450
+ name: string;
451
+ detail: string;
452
+ };
453
+ };
454
+ };
455
+ NORMINV: {
456
+ description: string;
457
+ abstract: string;
458
+ links: {
459
+ title: string;
460
+ url: string;
461
+ }[];
462
+ functionParameter: {
463
+ probability: {
464
+ name: string;
465
+ detail: string;
466
+ };
467
+ mean: {
468
+ name: string;
469
+ detail: string;
470
+ };
471
+ standardDev: {
472
+ name: string;
473
+ detail: string;
474
+ };
475
+ };
476
+ };
477
+ NORMSDIST: {
478
+ description: string;
479
+ abstract: string;
480
+ links: {
481
+ title: string;
482
+ url: string;
483
+ }[];
484
+ functionParameter: {
485
+ z: {
486
+ name: string;
487
+ detail: string;
488
+ };
489
+ };
490
+ };
491
+ NORMSINV: {
492
+ description: string;
493
+ abstract: string;
494
+ links: {
495
+ title: string;
496
+ url: string;
497
+ }[];
498
+ functionParameter: {
499
+ probability: {
500
+ name: string;
501
+ detail: string;
502
+ };
503
+ };
504
+ };
505
+ PERCENTILE: {
506
+ description: string;
507
+ abstract: string;
508
+ links: {
509
+ title: string;
510
+ url: string;
511
+ }[];
512
+ functionParameter: {
513
+ number1: {
514
+ name: string;
515
+ detail: string;
516
+ };
517
+ number2: {
518
+ name: string;
519
+ detail: string;
520
+ };
521
+ };
522
+ };
523
+ PERCENTRANK: {
524
+ description: string;
525
+ abstract: string;
526
+ links: {
527
+ title: string;
528
+ url: string;
529
+ }[];
530
+ functionParameter: {
531
+ number1: {
532
+ name: string;
533
+ detail: string;
534
+ };
535
+ number2: {
536
+ name: string;
537
+ detail: string;
538
+ };
539
+ };
540
+ };
541
+ POISSON: {
542
+ description: string;
543
+ abstract: string;
544
+ links: {
545
+ title: string;
546
+ url: string;
547
+ }[];
548
+ functionParameter: {
549
+ number1: {
550
+ name: string;
551
+ detail: string;
552
+ };
553
+ number2: {
554
+ name: string;
555
+ detail: string;
556
+ };
557
+ };
558
+ };
559
+ QUARTILE: {
560
+ description: string;
561
+ abstract: string;
562
+ links: {
563
+ title: string;
564
+ url: string;
565
+ }[];
566
+ functionParameter: {
567
+ number1: {
568
+ name: string;
569
+ detail: string;
570
+ };
571
+ number2: {
572
+ name: string;
573
+ detail: string;
574
+ };
575
+ };
576
+ };
577
+ RANK: {
578
+ description: string;
579
+ abstract: string;
580
+ links: {
581
+ title: string;
582
+ url: string;
583
+ }[];
584
+ functionParameter: {
585
+ number: {
586
+ name: string;
587
+ detail: string;
588
+ };
589
+ ref: {
590
+ name: string;
591
+ detail: string;
592
+ };
593
+ order: {
594
+ name: string;
595
+ detail: string;
596
+ };
597
+ };
598
+ };
599
+ STDEV: {
600
+ description: string;
601
+ abstract: string;
602
+ links: {
603
+ title: string;
604
+ url: string;
605
+ }[];
606
+ functionParameter: {
607
+ number1: {
608
+ name: string;
609
+ detail: string;
610
+ };
611
+ number2: {
612
+ name: string;
613
+ detail: string;
614
+ };
615
+ };
616
+ };
617
+ STDEVP: {
618
+ description: string;
619
+ abstract: string;
620
+ links: {
621
+ title: string;
622
+ url: string;
623
+ }[];
624
+ functionParameter: {
625
+ number1: {
626
+ name: string;
627
+ detail: string;
628
+ };
629
+ number2: {
630
+ name: string;
631
+ detail: string;
632
+ };
633
+ };
634
+ };
635
+ TDIST: {
636
+ description: string;
637
+ abstract: string;
638
+ links: {
639
+ title: string;
640
+ url: string;
641
+ }[];
642
+ functionParameter: {
643
+ number1: {
644
+ name: string;
645
+ detail: string;
646
+ };
647
+ number2: {
648
+ name: string;
649
+ detail: string;
650
+ };
651
+ };
652
+ };
653
+ TINV: {
654
+ description: string;
655
+ abstract: string;
656
+ links: {
657
+ title: string;
658
+ url: string;
659
+ }[];
660
+ functionParameter: {
661
+ number1: {
662
+ name: string;
663
+ detail: string;
664
+ };
665
+ number2: {
666
+ name: string;
667
+ detail: string;
668
+ };
669
+ };
670
+ };
671
+ TTEST: {
672
+ description: string;
673
+ abstract: string;
674
+ links: {
675
+ title: string;
676
+ url: string;
677
+ }[];
678
+ functionParameter: {
679
+ number1: {
680
+ name: string;
681
+ detail: string;
682
+ };
683
+ number2: {
684
+ name: string;
685
+ detail: string;
686
+ };
687
+ };
688
+ };
689
+ VAR: {
690
+ description: string;
691
+ abstract: string;
692
+ links: {
693
+ title: string;
694
+ url: string;
695
+ }[];
696
+ functionParameter: {
697
+ number1: {
698
+ name: string;
699
+ detail: string;
700
+ };
701
+ number2: {
702
+ name: string;
703
+ detail: string;
704
+ };
705
+ };
706
+ };
707
+ VARP: {
708
+ description: string;
709
+ abstract: string;
710
+ links: {
711
+ title: string;
712
+ url: string;
713
+ }[];
714
+ functionParameter: {
715
+ number1: {
716
+ name: string;
717
+ detail: string;
718
+ };
719
+ number2: {
720
+ name: string;
721
+ detail: string;
722
+ };
723
+ };
724
+ };
725
+ WEIBULL: {
726
+ description: string;
727
+ abstract: string;
728
+ links: {
729
+ title: string;
730
+ url: string;
731
+ }[];
732
+ functionParameter: {
733
+ number1: {
734
+ name: string;
735
+ detail: string;
736
+ };
737
+ number2: {
738
+ name: string;
739
+ detail: string;
740
+ };
741
+ };
742
+ };
743
+ ZTEST: {
744
+ description: string;
745
+ abstract: string;
746
+ links: {
747
+ title: string;
748
+ url: string;
749
+ }[];
750
+ functionParameter: {
751
+ number1: {
752
+ name: string;
753
+ detail: string;
754
+ };
755
+ number2: {
756
+ name: string;
757
+ detail: string;
758
+ };
759
+ };
760
+ };
761
+ };
762
+ export default _default;