@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,1608 @@
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
+ ACCRINT: {
18
+ description: string;
19
+ abstract: string;
20
+ links: {
21
+ title: string;
22
+ url: string;
23
+ }[];
24
+ functionParameter: {
25
+ issue: {
26
+ name: string;
27
+ detail: string;
28
+ };
29
+ firstInterest: {
30
+ name: string;
31
+ detail: string;
32
+ };
33
+ settlement: {
34
+ name: string;
35
+ detail: string;
36
+ };
37
+ rate: {
38
+ name: string;
39
+ detail: string;
40
+ };
41
+ par: {
42
+ name: string;
43
+ detail: string;
44
+ };
45
+ frequency: {
46
+ name: string;
47
+ detail: string;
48
+ };
49
+ basis: {
50
+ name: string;
51
+ detail: string;
52
+ };
53
+ calcMethod: {
54
+ name: string;
55
+ detail: string;
56
+ };
57
+ };
58
+ };
59
+ ACCRINTM: {
60
+ description: string;
61
+ abstract: string;
62
+ links: {
63
+ title: string;
64
+ url: string;
65
+ }[];
66
+ functionParameter: {
67
+ issue: {
68
+ name: string;
69
+ detail: string;
70
+ };
71
+ settlement: {
72
+ name: string;
73
+ detail: string;
74
+ };
75
+ rate: {
76
+ name: string;
77
+ detail: string;
78
+ };
79
+ par: {
80
+ name: string;
81
+ detail: string;
82
+ };
83
+ basis: {
84
+ name: string;
85
+ detail: string;
86
+ };
87
+ };
88
+ };
89
+ AMORDEGRC: {
90
+ description: string;
91
+ abstract: string;
92
+ links: {
93
+ title: string;
94
+ url: string;
95
+ }[];
96
+ functionParameter: {
97
+ number1: {
98
+ name: string;
99
+ detail: string;
100
+ };
101
+ number2: {
102
+ name: string;
103
+ detail: string;
104
+ };
105
+ };
106
+ };
107
+ AMORLINC: {
108
+ description: string;
109
+ abstract: string;
110
+ links: {
111
+ title: string;
112
+ url: string;
113
+ }[];
114
+ functionParameter: {
115
+ cost: {
116
+ name: string;
117
+ detail: string;
118
+ };
119
+ datePurchased: {
120
+ name: string;
121
+ detail: string;
122
+ };
123
+ firstPeriod: {
124
+ name: string;
125
+ detail: string;
126
+ };
127
+ salvage: {
128
+ name: string;
129
+ detail: string;
130
+ };
131
+ period: {
132
+ name: string;
133
+ detail: string;
134
+ };
135
+ rate: {
136
+ name: string;
137
+ detail: string;
138
+ };
139
+ basis: {
140
+ name: string;
141
+ detail: string;
142
+ };
143
+ };
144
+ };
145
+ COUPDAYBS: {
146
+ description: string;
147
+ abstract: string;
148
+ links: {
149
+ title: string;
150
+ url: string;
151
+ }[];
152
+ functionParameter: {
153
+ settlement: {
154
+ name: string;
155
+ detail: string;
156
+ };
157
+ maturity: {
158
+ name: string;
159
+ detail: string;
160
+ };
161
+ frequency: {
162
+ name: string;
163
+ detail: string;
164
+ };
165
+ basis: {
166
+ name: string;
167
+ detail: string;
168
+ };
169
+ };
170
+ };
171
+ COUPDAYS: {
172
+ description: string;
173
+ abstract: string;
174
+ links: {
175
+ title: string;
176
+ url: string;
177
+ }[];
178
+ functionParameter: {
179
+ settlement: {
180
+ name: string;
181
+ detail: string;
182
+ };
183
+ maturity: {
184
+ name: string;
185
+ detail: string;
186
+ };
187
+ frequency: {
188
+ name: string;
189
+ detail: string;
190
+ };
191
+ basis: {
192
+ name: string;
193
+ detail: string;
194
+ };
195
+ };
196
+ };
197
+ COUPDAYSNC: {
198
+ description: string;
199
+ abstract: string;
200
+ links: {
201
+ title: string;
202
+ url: string;
203
+ }[];
204
+ functionParameter: {
205
+ settlement: {
206
+ name: string;
207
+ detail: string;
208
+ };
209
+ maturity: {
210
+ name: string;
211
+ detail: string;
212
+ };
213
+ frequency: {
214
+ name: string;
215
+ detail: string;
216
+ };
217
+ basis: {
218
+ name: string;
219
+ detail: string;
220
+ };
221
+ };
222
+ };
223
+ COUPNCD: {
224
+ description: string;
225
+ abstract: string;
226
+ links: {
227
+ title: string;
228
+ url: string;
229
+ }[];
230
+ functionParameter: {
231
+ settlement: {
232
+ name: string;
233
+ detail: string;
234
+ };
235
+ maturity: {
236
+ name: string;
237
+ detail: string;
238
+ };
239
+ frequency: {
240
+ name: string;
241
+ detail: string;
242
+ };
243
+ basis: {
244
+ name: string;
245
+ detail: string;
246
+ };
247
+ };
248
+ };
249
+ COUPNUM: {
250
+ description: string;
251
+ abstract: string;
252
+ links: {
253
+ title: string;
254
+ url: string;
255
+ }[];
256
+ functionParameter: {
257
+ settlement: {
258
+ name: string;
259
+ detail: string;
260
+ };
261
+ maturity: {
262
+ name: string;
263
+ detail: string;
264
+ };
265
+ frequency: {
266
+ name: string;
267
+ detail: string;
268
+ };
269
+ basis: {
270
+ name: string;
271
+ detail: string;
272
+ };
273
+ };
274
+ };
275
+ COUPPCD: {
276
+ description: string;
277
+ abstract: string;
278
+ links: {
279
+ title: string;
280
+ url: string;
281
+ }[];
282
+ functionParameter: {
283
+ settlement: {
284
+ name: string;
285
+ detail: string;
286
+ };
287
+ maturity: {
288
+ name: string;
289
+ detail: string;
290
+ };
291
+ frequency: {
292
+ name: string;
293
+ detail: string;
294
+ };
295
+ basis: {
296
+ name: string;
297
+ detail: string;
298
+ };
299
+ };
300
+ };
301
+ CUMIPMT: {
302
+ description: string;
303
+ abstract: string;
304
+ links: {
305
+ title: string;
306
+ url: string;
307
+ }[];
308
+ functionParameter: {
309
+ rate: {
310
+ name: string;
311
+ detail: string;
312
+ };
313
+ nper: {
314
+ name: string;
315
+ detail: string;
316
+ };
317
+ pv: {
318
+ name: string;
319
+ detail: string;
320
+ };
321
+ startPeriod: {
322
+ name: string;
323
+ detail: string;
324
+ };
325
+ endPeriod: {
326
+ name: string;
327
+ detail: string;
328
+ };
329
+ type: {
330
+ name: string;
331
+ detail: string;
332
+ };
333
+ };
334
+ };
335
+ CUMPRINC: {
336
+ description: string;
337
+ abstract: string;
338
+ links: {
339
+ title: string;
340
+ url: string;
341
+ }[];
342
+ functionParameter: {
343
+ rate: {
344
+ name: string;
345
+ detail: string;
346
+ };
347
+ nper: {
348
+ name: string;
349
+ detail: string;
350
+ };
351
+ pv: {
352
+ name: string;
353
+ detail: string;
354
+ };
355
+ startPeriod: {
356
+ name: string;
357
+ detail: string;
358
+ };
359
+ endPeriod: {
360
+ name: string;
361
+ detail: string;
362
+ };
363
+ type: {
364
+ name: string;
365
+ detail: string;
366
+ };
367
+ };
368
+ };
369
+ DB: {
370
+ description: string;
371
+ abstract: string;
372
+ links: {
373
+ title: string;
374
+ url: string;
375
+ }[];
376
+ functionParameter: {
377
+ cost: {
378
+ name: string;
379
+ detail: string;
380
+ };
381
+ salvage: {
382
+ name: string;
383
+ detail: string;
384
+ };
385
+ life: {
386
+ name: string;
387
+ detail: string;
388
+ };
389
+ period: {
390
+ name: string;
391
+ detail: string;
392
+ };
393
+ month: {
394
+ name: string;
395
+ detail: string;
396
+ };
397
+ };
398
+ };
399
+ DDB: {
400
+ description: string;
401
+ abstract: string;
402
+ links: {
403
+ title: string;
404
+ url: string;
405
+ }[];
406
+ functionParameter: {
407
+ cost: {
408
+ name: string;
409
+ detail: string;
410
+ };
411
+ salvage: {
412
+ name: string;
413
+ detail: string;
414
+ };
415
+ life: {
416
+ name: string;
417
+ detail: string;
418
+ };
419
+ period: {
420
+ name: string;
421
+ detail: string;
422
+ };
423
+ factor: {
424
+ name: string;
425
+ detail: string;
426
+ };
427
+ };
428
+ };
429
+ DISC: {
430
+ description: string;
431
+ abstract: string;
432
+ links: {
433
+ title: string;
434
+ url: string;
435
+ }[];
436
+ functionParameter: {
437
+ settlement: {
438
+ name: string;
439
+ detail: string;
440
+ };
441
+ maturity: {
442
+ name: string;
443
+ detail: string;
444
+ };
445
+ pr: {
446
+ name: string;
447
+ detail: string;
448
+ };
449
+ redemption: {
450
+ name: string;
451
+ detail: string;
452
+ };
453
+ basis: {
454
+ name: string;
455
+ detail: string;
456
+ };
457
+ };
458
+ };
459
+ DOLLARDE: {
460
+ description: string;
461
+ abstract: string;
462
+ links: {
463
+ title: string;
464
+ url: string;
465
+ }[];
466
+ functionParameter: {
467
+ fractionalDollar: {
468
+ name: string;
469
+ detail: string;
470
+ };
471
+ fraction: {
472
+ name: string;
473
+ detail: string;
474
+ };
475
+ };
476
+ };
477
+ DOLLARFR: {
478
+ description: string;
479
+ abstract: string;
480
+ links: {
481
+ title: string;
482
+ url: string;
483
+ }[];
484
+ functionParameter: {
485
+ decimalDollar: {
486
+ name: string;
487
+ detail: string;
488
+ };
489
+ fraction: {
490
+ name: string;
491
+ detail: string;
492
+ };
493
+ };
494
+ };
495
+ DURATION: {
496
+ description: string;
497
+ abstract: string;
498
+ links: {
499
+ title: string;
500
+ url: string;
501
+ }[];
502
+ functionParameter: {
503
+ settlement: {
504
+ name: string;
505
+ detail: string;
506
+ };
507
+ maturity: {
508
+ name: string;
509
+ detail: string;
510
+ };
511
+ coupon: {
512
+ name: string;
513
+ detail: string;
514
+ };
515
+ yld: {
516
+ name: string;
517
+ detail: string;
518
+ };
519
+ frequency: {
520
+ name: string;
521
+ detail: string;
522
+ };
523
+ basis: {
524
+ name: string;
525
+ detail: string;
526
+ };
527
+ };
528
+ };
529
+ EFFECT: {
530
+ description: string;
531
+ abstract: string;
532
+ links: {
533
+ title: string;
534
+ url: string;
535
+ }[];
536
+ functionParameter: {
537
+ nominalRate: {
538
+ name: string;
539
+ detail: string;
540
+ };
541
+ npery: {
542
+ name: string;
543
+ detail: string;
544
+ };
545
+ };
546
+ };
547
+ FV: {
548
+ description: string;
549
+ abstract: string;
550
+ links: {
551
+ title: string;
552
+ url: string;
553
+ }[];
554
+ functionParameter: {
555
+ rate: {
556
+ name: string;
557
+ detail: string;
558
+ };
559
+ nper: {
560
+ name: string;
561
+ detail: string;
562
+ };
563
+ pmt: {
564
+ name: string;
565
+ detail: string;
566
+ };
567
+ pv: {
568
+ name: string;
569
+ detail: string;
570
+ };
571
+ type: {
572
+ name: string;
573
+ detail: string;
574
+ };
575
+ };
576
+ };
577
+ FVSCHEDULE: {
578
+ description: string;
579
+ abstract: string;
580
+ links: {
581
+ title: string;
582
+ url: string;
583
+ }[];
584
+ functionParameter: {
585
+ principal: {
586
+ name: string;
587
+ detail: string;
588
+ };
589
+ schedule: {
590
+ name: string;
591
+ detail: string;
592
+ };
593
+ };
594
+ };
595
+ INTRATE: {
596
+ description: string;
597
+ abstract: string;
598
+ links: {
599
+ title: string;
600
+ url: string;
601
+ }[];
602
+ functionParameter: {
603
+ settlement: {
604
+ name: string;
605
+ detail: string;
606
+ };
607
+ maturity: {
608
+ name: string;
609
+ detail: string;
610
+ };
611
+ investment: {
612
+ name: string;
613
+ detail: string;
614
+ };
615
+ redemption: {
616
+ name: string;
617
+ detail: string;
618
+ };
619
+ basis: {
620
+ name: string;
621
+ detail: string;
622
+ };
623
+ };
624
+ };
625
+ IPMT: {
626
+ description: string;
627
+ abstract: string;
628
+ links: {
629
+ title: string;
630
+ url: string;
631
+ }[];
632
+ functionParameter: {
633
+ rate: {
634
+ name: string;
635
+ detail: string;
636
+ };
637
+ per: {
638
+ name: string;
639
+ detail: string;
640
+ };
641
+ nper: {
642
+ name: string;
643
+ detail: string;
644
+ };
645
+ pv: {
646
+ name: string;
647
+ detail: string;
648
+ };
649
+ fv: {
650
+ name: string;
651
+ detail: string;
652
+ };
653
+ type: {
654
+ name: string;
655
+ detail: string;
656
+ };
657
+ };
658
+ };
659
+ IRR: {
660
+ description: string;
661
+ abstract: string;
662
+ links: {
663
+ title: string;
664
+ url: string;
665
+ }[];
666
+ functionParameter: {
667
+ values: {
668
+ name: string;
669
+ detail: string;
670
+ };
671
+ guess: {
672
+ name: string;
673
+ detail: string;
674
+ };
675
+ };
676
+ };
677
+ ISPMT: {
678
+ description: string;
679
+ abstract: string;
680
+ links: {
681
+ title: string;
682
+ url: string;
683
+ }[];
684
+ functionParameter: {
685
+ rate: {
686
+ name: string;
687
+ detail: string;
688
+ };
689
+ per: {
690
+ name: string;
691
+ detail: string;
692
+ };
693
+ nper: {
694
+ name: string;
695
+ detail: string;
696
+ };
697
+ pv: {
698
+ name: string;
699
+ detail: string;
700
+ };
701
+ };
702
+ };
703
+ MDURATION: {
704
+ description: string;
705
+ abstract: string;
706
+ links: {
707
+ title: string;
708
+ url: string;
709
+ }[];
710
+ functionParameter: {
711
+ settlement: {
712
+ name: string;
713
+ detail: string;
714
+ };
715
+ maturity: {
716
+ name: string;
717
+ detail: string;
718
+ };
719
+ coupon: {
720
+ name: string;
721
+ detail: string;
722
+ };
723
+ yld: {
724
+ name: string;
725
+ detail: string;
726
+ };
727
+ frequency: {
728
+ name: string;
729
+ detail: string;
730
+ };
731
+ basis: {
732
+ name: string;
733
+ detail: string;
734
+ };
735
+ };
736
+ };
737
+ MIRR: {
738
+ description: string;
739
+ abstract: string;
740
+ links: {
741
+ title: string;
742
+ url: string;
743
+ }[];
744
+ functionParameter: {
745
+ values: {
746
+ name: string;
747
+ detail: string;
748
+ };
749
+ financeRate: {
750
+ name: string;
751
+ detail: string;
752
+ };
753
+ reinvestRate: {
754
+ name: string;
755
+ detail: string;
756
+ };
757
+ };
758
+ };
759
+ NOMINAL: {
760
+ description: string;
761
+ abstract: string;
762
+ links: {
763
+ title: string;
764
+ url: string;
765
+ }[];
766
+ functionParameter: {
767
+ effectRate: {
768
+ name: string;
769
+ detail: string;
770
+ };
771
+ npery: {
772
+ name: string;
773
+ detail: string;
774
+ };
775
+ };
776
+ };
777
+ NPER: {
778
+ description: string;
779
+ abstract: string;
780
+ links: {
781
+ title: string;
782
+ url: string;
783
+ }[];
784
+ functionParameter: {
785
+ rate: {
786
+ name: string;
787
+ detail: string;
788
+ };
789
+ pmt: {
790
+ name: string;
791
+ detail: string;
792
+ };
793
+ pv: {
794
+ name: string;
795
+ detail: string;
796
+ };
797
+ fv: {
798
+ name: string;
799
+ detail: string;
800
+ };
801
+ type: {
802
+ name: string;
803
+ detail: string;
804
+ };
805
+ };
806
+ };
807
+ NPV: {
808
+ description: string;
809
+ abstract: string;
810
+ links: {
811
+ title: string;
812
+ url: string;
813
+ }[];
814
+ functionParameter: {
815
+ rate: {
816
+ name: string;
817
+ detail: string;
818
+ };
819
+ value1: {
820
+ name: string;
821
+ detail: string;
822
+ };
823
+ value2: {
824
+ name: string;
825
+ detail: string;
826
+ };
827
+ };
828
+ };
829
+ ODDFPRICE: {
830
+ description: string;
831
+ abstract: string;
832
+ links: {
833
+ title: string;
834
+ url: string;
835
+ }[];
836
+ functionParameter: {
837
+ settlement: {
838
+ name: string;
839
+ detail: string;
840
+ };
841
+ maturity: {
842
+ name: string;
843
+ detail: string;
844
+ };
845
+ issue: {
846
+ name: string;
847
+ detail: string;
848
+ };
849
+ firstCoupon: {
850
+ name: string;
851
+ detail: string;
852
+ };
853
+ rate: {
854
+ name: string;
855
+ detail: string;
856
+ };
857
+ yld: {
858
+ name: string;
859
+ detail: string;
860
+ };
861
+ redemption: {
862
+ name: string;
863
+ detail: string;
864
+ };
865
+ frequency: {
866
+ name: string;
867
+ detail: string;
868
+ };
869
+ basis: {
870
+ name: string;
871
+ detail: string;
872
+ };
873
+ };
874
+ };
875
+ ODDFYIELD: {
876
+ description: string;
877
+ abstract: string;
878
+ links: {
879
+ title: string;
880
+ url: string;
881
+ }[];
882
+ functionParameter: {
883
+ settlement: {
884
+ name: string;
885
+ detail: string;
886
+ };
887
+ maturity: {
888
+ name: string;
889
+ detail: string;
890
+ };
891
+ issue: {
892
+ name: string;
893
+ detail: string;
894
+ };
895
+ firstCoupon: {
896
+ name: string;
897
+ detail: string;
898
+ };
899
+ rate: {
900
+ name: string;
901
+ detail: string;
902
+ };
903
+ pr: {
904
+ name: string;
905
+ detail: string;
906
+ };
907
+ redemption: {
908
+ name: string;
909
+ detail: string;
910
+ };
911
+ frequency: {
912
+ name: string;
913
+ detail: string;
914
+ };
915
+ basis: {
916
+ name: string;
917
+ detail: string;
918
+ };
919
+ };
920
+ };
921
+ ODDLPRICE: {
922
+ description: string;
923
+ abstract: string;
924
+ links: {
925
+ title: string;
926
+ url: string;
927
+ }[];
928
+ functionParameter: {
929
+ settlement: {
930
+ name: string;
931
+ detail: string;
932
+ };
933
+ maturity: {
934
+ name: string;
935
+ detail: string;
936
+ };
937
+ lastInterest: {
938
+ name: string;
939
+ detail: string;
940
+ };
941
+ rate: {
942
+ name: string;
943
+ detail: string;
944
+ };
945
+ yld: {
946
+ name: string;
947
+ detail: string;
948
+ };
949
+ redemption: {
950
+ name: string;
951
+ detail: string;
952
+ };
953
+ frequency: {
954
+ name: string;
955
+ detail: string;
956
+ };
957
+ basis: {
958
+ name: string;
959
+ detail: string;
960
+ };
961
+ };
962
+ };
963
+ ODDLYIELD: {
964
+ description: string;
965
+ abstract: string;
966
+ links: {
967
+ title: string;
968
+ url: string;
969
+ }[];
970
+ functionParameter: {
971
+ settlement: {
972
+ name: string;
973
+ detail: string;
974
+ };
975
+ maturity: {
976
+ name: string;
977
+ detail: string;
978
+ };
979
+ lastInterest: {
980
+ name: string;
981
+ detail: string;
982
+ };
983
+ rate: {
984
+ name: string;
985
+ detail: string;
986
+ };
987
+ pr: {
988
+ name: string;
989
+ detail: string;
990
+ };
991
+ redemption: {
992
+ name: string;
993
+ detail: string;
994
+ };
995
+ frequency: {
996
+ name: string;
997
+ detail: string;
998
+ };
999
+ basis: {
1000
+ name: string;
1001
+ detail: string;
1002
+ };
1003
+ };
1004
+ };
1005
+ PDURATION: {
1006
+ description: string;
1007
+ abstract: string;
1008
+ links: {
1009
+ title: string;
1010
+ url: string;
1011
+ }[];
1012
+ functionParameter: {
1013
+ rate: {
1014
+ name: string;
1015
+ detail: string;
1016
+ };
1017
+ pv: {
1018
+ name: string;
1019
+ detail: string;
1020
+ };
1021
+ fv: {
1022
+ name: string;
1023
+ detail: string;
1024
+ };
1025
+ };
1026
+ };
1027
+ PMT: {
1028
+ description: string;
1029
+ abstract: string;
1030
+ links: {
1031
+ title: string;
1032
+ url: string;
1033
+ }[];
1034
+ functionParameter: {
1035
+ rate: {
1036
+ name: string;
1037
+ detail: string;
1038
+ };
1039
+ nper: {
1040
+ name: string;
1041
+ detail: string;
1042
+ };
1043
+ pv: {
1044
+ name: string;
1045
+ detail: string;
1046
+ };
1047
+ fv: {
1048
+ name: string;
1049
+ detail: string;
1050
+ };
1051
+ type: {
1052
+ name: string;
1053
+ detail: string;
1054
+ };
1055
+ };
1056
+ };
1057
+ PPMT: {
1058
+ description: string;
1059
+ abstract: string;
1060
+ links: {
1061
+ title: string;
1062
+ url: string;
1063
+ }[];
1064
+ functionParameter: {
1065
+ rate: {
1066
+ name: string;
1067
+ detail: string;
1068
+ };
1069
+ per: {
1070
+ name: string;
1071
+ detail: string;
1072
+ };
1073
+ nper: {
1074
+ name: string;
1075
+ detail: string;
1076
+ };
1077
+ pv: {
1078
+ name: string;
1079
+ detail: string;
1080
+ };
1081
+ fv: {
1082
+ name: string;
1083
+ detail: string;
1084
+ };
1085
+ type: {
1086
+ name: string;
1087
+ detail: string;
1088
+ };
1089
+ };
1090
+ };
1091
+ PRICE: {
1092
+ description: string;
1093
+ abstract: string;
1094
+ links: {
1095
+ title: string;
1096
+ url: string;
1097
+ }[];
1098
+ functionParameter: {
1099
+ settlement: {
1100
+ name: string;
1101
+ detail: string;
1102
+ };
1103
+ maturity: {
1104
+ name: string;
1105
+ detail: string;
1106
+ };
1107
+ rate: {
1108
+ name: string;
1109
+ detail: string;
1110
+ };
1111
+ yld: {
1112
+ name: string;
1113
+ detail: string;
1114
+ };
1115
+ redemption: {
1116
+ name: string;
1117
+ detail: string;
1118
+ };
1119
+ frequency: {
1120
+ name: string;
1121
+ detail: string;
1122
+ };
1123
+ basis: {
1124
+ name: string;
1125
+ detail: string;
1126
+ };
1127
+ };
1128
+ };
1129
+ PRICEDISC: {
1130
+ description: string;
1131
+ abstract: string;
1132
+ links: {
1133
+ title: string;
1134
+ url: string;
1135
+ }[];
1136
+ functionParameter: {
1137
+ settlement: {
1138
+ name: string;
1139
+ detail: string;
1140
+ };
1141
+ maturity: {
1142
+ name: string;
1143
+ detail: string;
1144
+ };
1145
+ discount: {
1146
+ name: string;
1147
+ detail: string;
1148
+ };
1149
+ redemption: {
1150
+ name: string;
1151
+ detail: string;
1152
+ };
1153
+ basis: {
1154
+ name: string;
1155
+ detail: string;
1156
+ };
1157
+ };
1158
+ };
1159
+ PRICEMAT: {
1160
+ description: string;
1161
+ abstract: string;
1162
+ links: {
1163
+ title: string;
1164
+ url: string;
1165
+ }[];
1166
+ functionParameter: {
1167
+ settlement: {
1168
+ name: string;
1169
+ detail: string;
1170
+ };
1171
+ maturity: {
1172
+ name: string;
1173
+ detail: string;
1174
+ };
1175
+ issue: {
1176
+ name: string;
1177
+ detail: string;
1178
+ };
1179
+ rate: {
1180
+ name: string;
1181
+ detail: string;
1182
+ };
1183
+ yld: {
1184
+ name: string;
1185
+ detail: string;
1186
+ };
1187
+ basis: {
1188
+ name: string;
1189
+ detail: string;
1190
+ };
1191
+ };
1192
+ };
1193
+ PV: {
1194
+ description: string;
1195
+ abstract: string;
1196
+ links: {
1197
+ title: string;
1198
+ url: string;
1199
+ }[];
1200
+ functionParameter: {
1201
+ rate: {
1202
+ name: string;
1203
+ detail: string;
1204
+ };
1205
+ nper: {
1206
+ name: string;
1207
+ detail: string;
1208
+ };
1209
+ pmt: {
1210
+ name: string;
1211
+ detail: string;
1212
+ };
1213
+ fv: {
1214
+ name: string;
1215
+ detail: string;
1216
+ };
1217
+ type: {
1218
+ name: string;
1219
+ detail: string;
1220
+ };
1221
+ };
1222
+ };
1223
+ RATE: {
1224
+ description: string;
1225
+ abstract: string;
1226
+ links: {
1227
+ title: string;
1228
+ url: string;
1229
+ }[];
1230
+ functionParameter: {
1231
+ nper: {
1232
+ name: string;
1233
+ detail: string;
1234
+ };
1235
+ pmt: {
1236
+ name: string;
1237
+ detail: string;
1238
+ };
1239
+ pv: {
1240
+ name: string;
1241
+ detail: string;
1242
+ };
1243
+ fv: {
1244
+ name: string;
1245
+ detail: string;
1246
+ };
1247
+ type: {
1248
+ name: string;
1249
+ detail: string;
1250
+ };
1251
+ guess: {
1252
+ name: string;
1253
+ detail: string;
1254
+ };
1255
+ };
1256
+ };
1257
+ RECEIVED: {
1258
+ description: string;
1259
+ abstract: string;
1260
+ links: {
1261
+ title: string;
1262
+ url: string;
1263
+ }[];
1264
+ functionParameter: {
1265
+ settlement: {
1266
+ name: string;
1267
+ detail: string;
1268
+ };
1269
+ maturity: {
1270
+ name: string;
1271
+ detail: string;
1272
+ };
1273
+ investment: {
1274
+ name: string;
1275
+ detail: string;
1276
+ };
1277
+ discount: {
1278
+ name: string;
1279
+ detail: string;
1280
+ };
1281
+ basis: {
1282
+ name: string;
1283
+ detail: string;
1284
+ };
1285
+ };
1286
+ };
1287
+ RRI: {
1288
+ description: string;
1289
+ abstract: string;
1290
+ links: {
1291
+ title: string;
1292
+ url: string;
1293
+ }[];
1294
+ functionParameter: {
1295
+ nper: {
1296
+ name: string;
1297
+ detail: string;
1298
+ };
1299
+ pv: {
1300
+ name: string;
1301
+ detail: string;
1302
+ };
1303
+ fv: {
1304
+ name: string;
1305
+ detail: string;
1306
+ };
1307
+ };
1308
+ };
1309
+ SLN: {
1310
+ description: string;
1311
+ abstract: string;
1312
+ links: {
1313
+ title: string;
1314
+ url: string;
1315
+ }[];
1316
+ functionParameter: {
1317
+ cost: {
1318
+ name: string;
1319
+ detail: string;
1320
+ };
1321
+ salvage: {
1322
+ name: string;
1323
+ detail: string;
1324
+ };
1325
+ life: {
1326
+ name: string;
1327
+ detail: string;
1328
+ };
1329
+ };
1330
+ };
1331
+ SYD: {
1332
+ description: string;
1333
+ abstract: string;
1334
+ links: {
1335
+ title: string;
1336
+ url: string;
1337
+ }[];
1338
+ functionParameter: {
1339
+ cost: {
1340
+ name: string;
1341
+ detail: string;
1342
+ };
1343
+ salvage: {
1344
+ name: string;
1345
+ detail: string;
1346
+ };
1347
+ life: {
1348
+ name: string;
1349
+ detail: string;
1350
+ };
1351
+ per: {
1352
+ name: string;
1353
+ detail: string;
1354
+ };
1355
+ };
1356
+ };
1357
+ TBILLEQ: {
1358
+ description: string;
1359
+ abstract: string;
1360
+ links: {
1361
+ title: string;
1362
+ url: string;
1363
+ }[];
1364
+ functionParameter: {
1365
+ settlement: {
1366
+ name: string;
1367
+ detail: string;
1368
+ };
1369
+ maturity: {
1370
+ name: string;
1371
+ detail: string;
1372
+ };
1373
+ discount: {
1374
+ name: string;
1375
+ detail: string;
1376
+ };
1377
+ };
1378
+ };
1379
+ TBILLPRICE: {
1380
+ description: string;
1381
+ abstract: string;
1382
+ links: {
1383
+ title: string;
1384
+ url: string;
1385
+ }[];
1386
+ functionParameter: {
1387
+ settlement: {
1388
+ name: string;
1389
+ detail: string;
1390
+ };
1391
+ maturity: {
1392
+ name: string;
1393
+ detail: string;
1394
+ };
1395
+ discount: {
1396
+ name: string;
1397
+ detail: string;
1398
+ };
1399
+ };
1400
+ };
1401
+ TBILLYIELD: {
1402
+ description: string;
1403
+ abstract: string;
1404
+ links: {
1405
+ title: string;
1406
+ url: string;
1407
+ }[];
1408
+ functionParameter: {
1409
+ settlement: {
1410
+ name: string;
1411
+ detail: string;
1412
+ };
1413
+ maturity: {
1414
+ name: string;
1415
+ detail: string;
1416
+ };
1417
+ pr: {
1418
+ name: string;
1419
+ detail: string;
1420
+ };
1421
+ };
1422
+ };
1423
+ VDB: {
1424
+ description: string;
1425
+ abstract: string;
1426
+ links: {
1427
+ title: string;
1428
+ url: string;
1429
+ }[];
1430
+ functionParameter: {
1431
+ cost: {
1432
+ name: string;
1433
+ detail: string;
1434
+ };
1435
+ salvage: {
1436
+ name: string;
1437
+ detail: string;
1438
+ };
1439
+ life: {
1440
+ name: string;
1441
+ detail: string;
1442
+ };
1443
+ startPeriod: {
1444
+ name: string;
1445
+ detail: string;
1446
+ };
1447
+ endPeriod: {
1448
+ name: string;
1449
+ detail: string;
1450
+ };
1451
+ factor: {
1452
+ name: string;
1453
+ detail: string;
1454
+ };
1455
+ noSwitch: {
1456
+ name: string;
1457
+ detail: string;
1458
+ };
1459
+ };
1460
+ };
1461
+ XIRR: {
1462
+ description: string;
1463
+ abstract: string;
1464
+ links: {
1465
+ title: string;
1466
+ url: string;
1467
+ }[];
1468
+ functionParameter: {
1469
+ values: {
1470
+ name: string;
1471
+ detail: string;
1472
+ };
1473
+ dates: {
1474
+ name: string;
1475
+ detail: string;
1476
+ };
1477
+ guess: {
1478
+ name: string;
1479
+ detail: string;
1480
+ };
1481
+ };
1482
+ };
1483
+ XNPV: {
1484
+ description: string;
1485
+ abstract: string;
1486
+ links: {
1487
+ title: string;
1488
+ url: string;
1489
+ }[];
1490
+ functionParameter: {
1491
+ rate: {
1492
+ name: string;
1493
+ detail: string;
1494
+ };
1495
+ values: {
1496
+ name: string;
1497
+ detail: string;
1498
+ };
1499
+ dates: {
1500
+ name: string;
1501
+ detail: string;
1502
+ };
1503
+ };
1504
+ };
1505
+ YIELD: {
1506
+ description: string;
1507
+ abstract: string;
1508
+ links: {
1509
+ title: string;
1510
+ url: string;
1511
+ }[];
1512
+ functionParameter: {
1513
+ settlement: {
1514
+ name: string;
1515
+ detail: string;
1516
+ };
1517
+ maturity: {
1518
+ name: string;
1519
+ detail: string;
1520
+ };
1521
+ rate: {
1522
+ name: string;
1523
+ detail: string;
1524
+ };
1525
+ pr: {
1526
+ name: string;
1527
+ detail: string;
1528
+ };
1529
+ redemption: {
1530
+ name: string;
1531
+ detail: string;
1532
+ };
1533
+ frequency: {
1534
+ name: string;
1535
+ detail: string;
1536
+ };
1537
+ basis: {
1538
+ name: string;
1539
+ detail: string;
1540
+ };
1541
+ };
1542
+ };
1543
+ YIELDDISC: {
1544
+ description: string;
1545
+ abstract: string;
1546
+ links: {
1547
+ title: string;
1548
+ url: string;
1549
+ }[];
1550
+ functionParameter: {
1551
+ settlement: {
1552
+ name: string;
1553
+ detail: string;
1554
+ };
1555
+ maturity: {
1556
+ name: string;
1557
+ detail: string;
1558
+ };
1559
+ pr: {
1560
+ name: string;
1561
+ detail: string;
1562
+ };
1563
+ redemption: {
1564
+ name: string;
1565
+ detail: string;
1566
+ };
1567
+ basis: {
1568
+ name: string;
1569
+ detail: string;
1570
+ };
1571
+ };
1572
+ };
1573
+ YIELDMAT: {
1574
+ description: string;
1575
+ abstract: string;
1576
+ links: {
1577
+ title: string;
1578
+ url: string;
1579
+ }[];
1580
+ functionParameter: {
1581
+ settlement: {
1582
+ name: string;
1583
+ detail: string;
1584
+ };
1585
+ maturity: {
1586
+ name: string;
1587
+ detail: string;
1588
+ };
1589
+ issue: {
1590
+ name: string;
1591
+ detail: string;
1592
+ };
1593
+ rate: {
1594
+ name: string;
1595
+ detail: string;
1596
+ };
1597
+ pr: {
1598
+ name: string;
1599
+ detail: string;
1600
+ };
1601
+ basis: {
1602
+ name: string;
1603
+ detail: string;
1604
+ };
1605
+ };
1606
+ };
1607
+ };
1608
+ export default _default;