@univerjs/sheets-formula 0.2.6 → 0.2.8

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 (117) hide show
  1. package/lib/cjs/index.js +4 -4
  2. package/lib/es/index.js +1185 -724
  3. package/lib/locale/en-US.json +706 -428
  4. package/lib/locale/ru-RU.json +703 -425
  5. package/lib/locale/vi-VN.json +2644 -1855
  6. package/lib/locale/zh-CN.json +750 -472
  7. package/lib/locale/zh-TW.json +834 -588
  8. package/lib/types/commands/commands/formula-clipboard.command.d.ts +0 -1
  9. package/lib/types/commands/commands/insert-function.command.d.ts +0 -1
  10. package/lib/types/commands/mutations/formula.mutation.d.ts +0 -1
  11. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +0 -1
  12. package/lib/types/commands/operations/editor-formula.operation.d.ts +0 -1
  13. package/lib/types/commands/operations/help-function.operation.d.ts +0 -1
  14. package/lib/types/commands/operations/insert-function.operation.d.ts +0 -1
  15. package/lib/types/commands/operations/more-functions.operation.d.ts +0 -1
  16. package/lib/types/commands/operations/reference-absolute.operation.d.ts +0 -1
  17. package/lib/types/commands/operations/search-function.operation.d.ts +0 -1
  18. package/lib/types/common/selection.d.ts +0 -1
  19. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +0 -1
  20. package/lib/types/controllers/active-dirty.controller.d.ts +0 -1
  21. package/lib/types/controllers/array-formula-display.controller.d.ts +0 -1
  22. package/lib/types/controllers/defined-name.controller.d.ts +0 -1
  23. package/lib/types/controllers/formula-alert-render.controller.d.ts +0 -1
  24. package/lib/types/controllers/formula-auto-fill.controller.d.ts +0 -1
  25. package/lib/types/controllers/formula-clipboard.controller.d.ts +0 -1
  26. package/lib/types/controllers/formula-editor-show.controller.d.ts +0 -1
  27. package/lib/types/controllers/formula-render.controller.d.ts +0 -1
  28. package/lib/types/controllers/formula-ui.controller.d.ts +0 -1
  29. package/lib/types/controllers/menu.d.ts +0 -1
  30. package/lib/types/controllers/prompt.controller.d.ts +3 -2
  31. package/lib/types/controllers/shortcuts/prompt.shortcut.d.ts +0 -1
  32. package/lib/types/controllers/trigger-calculation.controller.d.ts +0 -1
  33. package/lib/types/controllers/update-formula.controller.d.ts +0 -1
  34. package/lib/types/controllers/utils/offset-formula-data.d.ts +0 -1
  35. package/lib/types/controllers/utils/ref-range-formula.d.ts +0 -1
  36. package/lib/types/controllers/utils/utils.d.ts +0 -1
  37. package/lib/types/formula-ui-plugin.d.ts +0 -1
  38. package/lib/types/index.d.ts +1 -0
  39. package/lib/types/locale/en-US.d.ts +440 -162
  40. package/lib/types/locale/function-list/array/ru-RU.d.ts +0 -1
  41. package/lib/types/locale/function-list/compatibility/ru-RU.d.ts +0 -1
  42. package/lib/types/locale/function-list/date/ru-RU.d.ts +0 -1
  43. package/lib/types/locale/function-list/date/vi-VN.d.ts +105 -26
  44. package/lib/types/locale/function-list/date/zh-TW.d.ts +32 -8
  45. package/lib/types/locale/function-list/engineering/en-US.d.ts +50 -66
  46. package/lib/types/locale/function-list/engineering/ja-JP.d.ts +50 -66
  47. package/lib/types/locale/function-list/engineering/ru-RU.d.ts +0 -1
  48. package/lib/types/locale/function-list/engineering/vi-VN.d.ts +50 -66
  49. package/lib/types/locale/function-list/engineering/zh-CN.d.ts +50 -66
  50. package/lib/types/locale/function-list/engineering/zh-TW.d.ts +50 -66
  51. package/lib/types/locale/function-list/financial/en-US.d.ts +344 -56
  52. package/lib/types/locale/function-list/financial/ja-JP.d.ts +344 -56
  53. package/lib/types/locale/function-list/financial/ru-RU.d.ts +0 -1
  54. package/lib/types/locale/function-list/financial/vi-VN.d.ts +344 -56
  55. package/lib/types/locale/function-list/financial/zh-CN.d.ts +344 -56
  56. package/lib/types/locale/function-list/financial/zh-TW.d.ts +344 -56
  57. package/lib/types/locale/function-list/information/ja-JP.d.ts +8 -40
  58. package/lib/types/locale/function-list/information/ru-RU.d.ts +0 -1
  59. package/lib/types/locale/function-list/information/vi-VN.d.ts +218 -3
  60. package/lib/types/locale/function-list/logical/en-US.d.ts +45 -35
  61. package/lib/types/locale/function-list/logical/ja-JP.d.ts +45 -35
  62. package/lib/types/locale/function-list/logical/ru-RU.d.ts +0 -1
  63. package/lib/types/locale/function-list/logical/vi-VN.d.ts +45 -35
  64. package/lib/types/locale/function-list/logical/zh-CN.d.ts +45 -35
  65. package/lib/types/locale/function-list/logical/zh-TW.d.ts +45 -35
  66. package/lib/types/locale/function-list/lookup/en-US.d.ts +1 -5
  67. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +1 -5
  68. package/lib/types/locale/function-list/lookup/ru-RU.d.ts +0 -1
  69. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +421 -9
  70. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +1 -5
  71. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +1 -5
  72. package/lib/types/locale/function-list/math/ru-RU.d.ts +0 -1
  73. package/lib/types/locale/function-list/math/vi-VN.d.ts +1022 -3
  74. package/lib/types/locale/function-list/math/zh-TW.d.ts +21 -77
  75. package/lib/types/locale/function-list/statistical/ru-RU.d.ts +0 -1
  76. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +334 -0
  77. package/lib/types/locale/function-list/text/vi-VN.d.ts +135 -1
  78. package/lib/types/locale/function-list/web/vi-VN.d.ts +0 -1
  79. package/lib/types/locale/ru-RU.d.ts +440 -162
  80. package/lib/types/locale/vi-VN.d.ts +1378 -623
  81. package/lib/types/locale/zh-CN.d.ts +440 -162
  82. package/lib/types/locale/zh-TW.d.ts +493 -247
  83. package/lib/types/services/description.service.d.ts +0 -1
  84. package/lib/types/services/formula-common.d.ts +0 -1
  85. package/lib/types/services/formula-ref-range.service.d.ts +0 -1
  86. package/lib/types/services/function-list/array.d.ts +0 -1
  87. package/lib/types/services/function-list/compatibility.d.ts +0 -1
  88. package/lib/types/services/function-list/cube.d.ts +0 -1
  89. package/lib/types/services/function-list/database.d.ts +0 -1
  90. package/lib/types/services/function-list/date.d.ts +0 -1
  91. package/lib/types/services/function-list/engineering.d.ts +0 -1
  92. package/lib/types/services/function-list/financial.d.ts +0 -1
  93. package/lib/types/services/function-list/function-list.d.ts +0 -1
  94. package/lib/types/services/function-list/information.d.ts +0 -1
  95. package/lib/types/services/function-list/logical.d.ts +0 -1
  96. package/lib/types/services/function-list/lookup.d.ts +0 -1
  97. package/lib/types/services/function-list/math.d.ts +0 -1
  98. package/lib/types/services/function-list/statistical.d.ts +0 -1
  99. package/lib/types/services/function-list/text.d.ts +0 -1
  100. package/lib/types/services/function-list/univer.d.ts +0 -1
  101. package/lib/types/services/function-list/web.d.ts +0 -1
  102. package/lib/types/services/prompt.service.d.ts +5 -2
  103. package/lib/types/services/register-function.service.d.ts +0 -1
  104. package/lib/types/services/register-other-formula.service.d.ts +0 -1
  105. package/lib/types/services/remote/remote-register-function.service.d.ts +0 -1
  106. package/lib/types/services/render-services/ref-selections.render-service.d.ts +0 -1
  107. package/lib/types/services/utils.d.ts +0 -1
  108. package/lib/types/views/FormulaPromptContainer.d.ts +0 -1
  109. package/lib/types/views/more-functions/MoreFunctions.d.ts +0 -1
  110. package/lib/types/views/more-functions/function-help/FunctionHelp.d.ts +0 -1
  111. package/lib/types/views/more-functions/function-params/FunctionParams.d.ts +0 -1
  112. package/lib/types/views/more-functions/input-params/InputParams.d.ts +0 -1
  113. package/lib/types/views/more-functions/select-function/SelectFunction.d.ts +0 -1
  114. package/lib/types/views/prompt/help-function/HelpFunction.d.ts +0 -1
  115. package/lib/types/views/prompt/search-function/SearchFunction.d.ts +0 -1
  116. package/lib/umd/index.js +4 -4
  117. package/package.json +24 -24
@@ -897,11 +897,11 @@ declare const _default: {
897
897
  url: string;
898
898
  }[];
899
899
  functionParameter: {
900
- number1: {
900
+ x: {
901
901
  name: string;
902
902
  detail: string;
903
903
  };
904
- number2: {
904
+ n: {
905
905
  name: string;
906
906
  detail: string;
907
907
  };
@@ -915,11 +915,11 @@ declare const _default: {
915
915
  url: string;
916
916
  }[];
917
917
  functionParameter: {
918
- number1: {
918
+ x: {
919
919
  name: string;
920
920
  detail: string;
921
921
  };
922
- number2: {
922
+ n: {
923
923
  name: string;
924
924
  detail: string;
925
925
  };
@@ -933,11 +933,11 @@ declare const _default: {
933
933
  url: string;
934
934
  }[];
935
935
  functionParameter: {
936
- number1: {
936
+ x: {
937
937
  name: string;
938
938
  detail: string;
939
939
  };
940
- number2: {
940
+ n: {
941
941
  name: string;
942
942
  detail: string;
943
943
  };
@@ -951,11 +951,11 @@ declare const _default: {
951
951
  url: string;
952
952
  }[];
953
953
  functionParameter: {
954
- number1: {
954
+ x: {
955
955
  name: string;
956
956
  detail: string;
957
957
  };
958
- number2: {
958
+ n: {
959
959
  name: string;
960
960
  detail: string;
961
961
  };
@@ -969,11 +969,7 @@ declare const _default: {
969
969
  url: string;
970
970
  }[];
971
971
  functionParameter: {
972
- number1: {
973
- name: string;
974
- detail: string;
975
- };
976
- number2: {
972
+ number: {
977
973
  name: string;
978
974
  detail: string;
979
975
  };
@@ -987,11 +983,11 @@ declare const _default: {
987
983
  url: string;
988
984
  }[];
989
985
  functionParameter: {
990
- number1: {
986
+ number: {
991
987
  name: string;
992
988
  detail: string;
993
989
  };
994
- number2: {
990
+ places: {
995
991
  name: string;
996
992
  detail: string;
997
993
  };
@@ -1005,11 +1001,11 @@ declare const _default: {
1005
1001
  url: string;
1006
1002
  }[];
1007
1003
  functionParameter: {
1008
- number1: {
1004
+ number: {
1009
1005
  name: string;
1010
1006
  detail: string;
1011
1007
  };
1012
- number2: {
1008
+ places: {
1013
1009
  name: string;
1014
1010
  detail: string;
1015
1011
  };
@@ -1041,11 +1037,11 @@ declare const _default: {
1041
1037
  url: string;
1042
1038
  }[];
1043
1039
  functionParameter: {
1044
- number1: {
1040
+ number: {
1045
1041
  name: string;
1046
1042
  detail: string;
1047
1043
  };
1048
- number2: {
1044
+ shiftAmount: {
1049
1045
  name: string;
1050
1046
  detail: string;
1051
1047
  };
@@ -1077,11 +1073,11 @@ declare const _default: {
1077
1073
  url: string;
1078
1074
  }[];
1079
1075
  functionParameter: {
1080
- number1: {
1076
+ number: {
1081
1077
  name: string;
1082
1078
  detail: string;
1083
1079
  };
1084
- number2: {
1080
+ shiftAmount: {
1085
1081
  name: string;
1086
1082
  detail: string;
1087
1083
  };
@@ -1113,11 +1109,15 @@ declare const _default: {
1113
1109
  url: string;
1114
1110
  }[];
1115
1111
  functionParameter: {
1116
- number1: {
1112
+ realNum: {
1117
1113
  name: string;
1118
1114
  detail: string;
1119
1115
  };
1120
- number2: {
1116
+ iNum: {
1117
+ name: string;
1118
+ detail: string;
1119
+ };
1120
+ suffix: {
1121
1121
  name: string;
1122
1122
  detail: string;
1123
1123
  };
@@ -1131,11 +1131,15 @@ declare const _default: {
1131
1131
  url: string;
1132
1132
  }[];
1133
1133
  functionParameter: {
1134
- number1: {
1134
+ number: {
1135
1135
  name: string;
1136
1136
  detail: string;
1137
1137
  };
1138
- number2: {
1138
+ fromUnit: {
1139
+ name: string;
1140
+ detail: string;
1141
+ };
1142
+ toUnit: {
1139
1143
  name: string;
1140
1144
  detail: string;
1141
1145
  };
@@ -1149,11 +1153,11 @@ declare const _default: {
1149
1153
  url: string;
1150
1154
  }[];
1151
1155
  functionParameter: {
1152
- number1: {
1156
+ number: {
1153
1157
  name: string;
1154
1158
  detail: string;
1155
1159
  };
1156
- number2: {
1160
+ places: {
1157
1161
  name: string;
1158
1162
  detail: string;
1159
1163
  };
@@ -1167,11 +1171,11 @@ declare const _default: {
1167
1171
  url: string;
1168
1172
  }[];
1169
1173
  functionParameter: {
1170
- number1: {
1174
+ number: {
1171
1175
  name: string;
1172
1176
  detail: string;
1173
1177
  };
1174
- number2: {
1178
+ places: {
1175
1179
  name: string;
1176
1180
  detail: string;
1177
1181
  };
@@ -1185,11 +1189,11 @@ declare const _default: {
1185
1189
  url: string;
1186
1190
  }[];
1187
1191
  functionParameter: {
1188
- number1: {
1192
+ number: {
1189
1193
  name: string;
1190
1194
  detail: string;
1191
1195
  };
1192
- number2: {
1196
+ places: {
1193
1197
  name: string;
1194
1198
  detail: string;
1195
1199
  };
@@ -1221,11 +1225,11 @@ declare const _default: {
1221
1225
  url: string;
1222
1226
  }[];
1223
1227
  functionParameter: {
1224
- number1: {
1228
+ lowerLimit: {
1225
1229
  name: string;
1226
1230
  detail: string;
1227
1231
  };
1228
- number2: {
1232
+ upperLimit: {
1229
1233
  name: string;
1230
1234
  detail: string;
1231
1235
  };
@@ -1239,11 +1243,7 @@ declare const _default: {
1239
1243
  url: string;
1240
1244
  }[];
1241
1245
  functionParameter: {
1242
- number1: {
1243
- name: string;
1244
- detail: string;
1245
- };
1246
- number2: {
1246
+ x: {
1247
1247
  name: string;
1248
1248
  detail: string;
1249
1249
  };
@@ -1257,11 +1257,7 @@ declare const _default: {
1257
1257
  url: string;
1258
1258
  }[];
1259
1259
  functionParameter: {
1260
- number1: {
1261
- name: string;
1262
- detail: string;
1263
- };
1264
- number2: {
1260
+ x: {
1265
1261
  name: string;
1266
1262
  detail: string;
1267
1263
  };
@@ -1275,11 +1271,7 @@ declare const _default: {
1275
1271
  url: string;
1276
1272
  }[];
1277
1273
  functionParameter: {
1278
- number1: {
1279
- name: string;
1280
- detail: string;
1281
- };
1282
- number2: {
1274
+ x: {
1283
1275
  name: string;
1284
1276
  detail: string;
1285
1277
  };
@@ -1311,11 +1303,11 @@ declare const _default: {
1311
1303
  url: string;
1312
1304
  }[];
1313
1305
  functionParameter: {
1314
- number1: {
1306
+ number: {
1315
1307
  name: string;
1316
1308
  detail: string;
1317
1309
  };
1318
- number2: {
1310
+ places: {
1319
1311
  name: string;
1320
1312
  detail: string;
1321
1313
  };
@@ -1329,11 +1321,7 @@ declare const _default: {
1329
1321
  url: string;
1330
1322
  }[];
1331
1323
  functionParameter: {
1332
- number1: {
1333
- name: string;
1334
- detail: string;
1335
- };
1336
- number2: {
1324
+ number: {
1337
1325
  name: string;
1338
1326
  detail: string;
1339
1327
  };
@@ -1347,11 +1335,11 @@ declare const _default: {
1347
1335
  url: string;
1348
1336
  }[];
1349
1337
  functionParameter: {
1350
- number1: {
1338
+ number: {
1351
1339
  name: string;
1352
1340
  detail: string;
1353
1341
  };
1354
- number2: {
1342
+ places: {
1355
1343
  name: string;
1356
1344
  detail: string;
1357
1345
  };
@@ -1815,11 +1803,11 @@ declare const _default: {
1815
1803
  url: string;
1816
1804
  }[];
1817
1805
  functionParameter: {
1818
- number1: {
1806
+ number: {
1819
1807
  name: string;
1820
1808
  detail: string;
1821
1809
  };
1822
- number2: {
1810
+ places: {
1823
1811
  name: string;
1824
1812
  detail: string;
1825
1813
  };
@@ -1833,11 +1821,7 @@ declare const _default: {
1833
1821
  url: string;
1834
1822
  }[];
1835
1823
  functionParameter: {
1836
- number1: {
1837
- name: string;
1838
- detail: string;
1839
- };
1840
- number2: {
1824
+ number: {
1841
1825
  name: string;
1842
1826
  detail: string;
1843
1827
  };
@@ -1851,11 +1835,11 @@ declare const _default: {
1851
1835
  url: string;
1852
1836
  }[];
1853
1837
  functionParameter: {
1854
- number1: {
1838
+ number: {
1855
1839
  name: string;
1856
1840
  detail: string;
1857
1841
  };
1858
- number2: {
1842
+ places: {
1859
1843
  name: string;
1860
1844
  detail: string;
1861
1845
  };
@@ -2248,16 +2232,7 @@ declare const _default: {
2248
2232
  title: string;
2249
2233
  url: string;
2250
2234
  }[];
2251
- functionParameter: {
2252
- number1: {
2253
- name: string;
2254
- detail: string;
2255
- };
2256
- number2: {
2257
- name: string;
2258
- detail: string;
2259
- };
2260
- };
2235
+ functionParameter: {};
2261
2236
  };
2262
2237
  IF: {
2263
2238
  description: string;
@@ -2307,11 +2282,11 @@ declare const _default: {
2307
2282
  url: string;
2308
2283
  }[];
2309
2284
  functionParameter: {
2310
- number1: {
2285
+ value: {
2311
2286
  name: string;
2312
2287
  detail: string;
2313
2288
  };
2314
- number2: {
2289
+ valueIfNa: {
2315
2290
  name: string;
2316
2291
  detail: string;
2317
2292
  };
@@ -2325,11 +2300,19 @@ declare const _default: {
2325
2300
  url: string;
2326
2301
  }[];
2327
2302
  functionParameter: {
2328
- number1: {
2303
+ logicalTest1: {
2329
2304
  name: string;
2330
2305
  detail: string;
2331
2306
  };
2332
- number2: {
2307
+ valueIfTrue1: {
2308
+ name: string;
2309
+ detail: string;
2310
+ };
2311
+ logicalTest2: {
2312
+ name: string;
2313
+ detail: string;
2314
+ };
2315
+ valueIfTrue2: {
2333
2316
  name: string;
2334
2317
  detail: string;
2335
2318
  };
@@ -2361,11 +2344,23 @@ declare const _default: {
2361
2344
  url: string;
2362
2345
  }[];
2363
2346
  functionParameter: {
2364
- number1: {
2347
+ name1: {
2365
2348
  name: string;
2366
2349
  detail: string;
2367
2350
  };
2368
- number2: {
2351
+ nameValue1: {
2352
+ name: string;
2353
+ detail: string;
2354
+ };
2355
+ calculationOrName2: {
2356
+ name: string;
2357
+ detail: string;
2358
+ };
2359
+ nameValue2: {
2360
+ name: string;
2361
+ detail: string;
2362
+ };
2363
+ calculationOrName3: {
2369
2364
  name: string;
2370
2365
  detail: string;
2371
2366
  };
@@ -2419,11 +2414,7 @@ declare const _default: {
2419
2414
  url: string;
2420
2415
  }[];
2421
2416
  functionParameter: {
2422
- number1: {
2423
- name: string;
2424
- detail: string;
2425
- };
2426
- number2: {
2417
+ logical: {
2427
2418
  name: string;
2428
2419
  detail: string;
2429
2420
  };
@@ -2491,11 +2482,23 @@ declare const _default: {
2491
2482
  url: string;
2492
2483
  }[];
2493
2484
  functionParameter: {
2494
- number1: {
2485
+ expression: {
2495
2486
  name: string;
2496
2487
  detail: string;
2497
2488
  };
2498
- number2: {
2489
+ value1: {
2490
+ name: string;
2491
+ detail: string;
2492
+ };
2493
+ result1: {
2494
+ name: string;
2495
+ detail: string;
2496
+ };
2497
+ defaultOrValue2: {
2498
+ name: string;
2499
+ detail: string;
2500
+ };
2501
+ result2: {
2499
2502
  name: string;
2500
2503
  detail: string;
2501
2504
  };
@@ -2508,16 +2511,7 @@ declare const _default: {
2508
2511
  title: string;
2509
2512
  url: string;
2510
2513
  }[];
2511
- functionParameter: {
2512
- number1: {
2513
- name: string;
2514
- detail: string;
2515
- };
2516
- number2: {
2517
- name: string;
2518
- detail: string;
2519
- };
2520
- };
2514
+ functionParameter: {};
2521
2515
  };
2522
2516
  XOR: {
2523
2517
  description: string;
@@ -2527,11 +2521,11 @@ declare const _default: {
2527
2521
  url: string;
2528
2522
  }[];
2529
2523
  functionParameter: {
2530
- number1: {
2524
+ logical1: {
2531
2525
  name: string;
2532
2526
  detail: string;
2533
2527
  };
2534
- number2: {
2528
+ logical2: {
2535
2529
  name: string;
2536
2530
  detail: string;
2537
2531
  };
@@ -3673,11 +3667,7 @@ declare const _default: {
3673
3667
  url: string;
3674
3668
  }[];
3675
3669
  functionParameter: {
3676
- number1: {
3677
- name: string;
3678
- detail: string;
3679
- };
3680
- number2: {
3670
+ reference: {
3681
3671
  name: string;
3682
3672
  detail: string;
3683
3673
  };
@@ -8255,11 +8245,35 @@ declare const _default: {
8255
8245
  url: string;
8256
8246
  }[];
8257
8247
  functionParameter: {
8258
- number1: {
8248
+ issue: {
8259
8249
  name: string;
8260
8250
  detail: string;
8261
8251
  };
8262
- number2: {
8252
+ firstInterest: {
8253
+ name: string;
8254
+ detail: string;
8255
+ };
8256
+ settlement: {
8257
+ name: string;
8258
+ detail: string;
8259
+ };
8260
+ rate: {
8261
+ name: string;
8262
+ detail: string;
8263
+ };
8264
+ par: {
8265
+ name: string;
8266
+ detail: string;
8267
+ };
8268
+ frequency: {
8269
+ name: string;
8270
+ detail: string;
8271
+ };
8272
+ basis: {
8273
+ name: string;
8274
+ detail: string;
8275
+ };
8276
+ calcMethod: {
8263
8277
  name: string;
8264
8278
  detail: string;
8265
8279
  };
@@ -8273,11 +8287,23 @@ declare const _default: {
8273
8287
  url: string;
8274
8288
  }[];
8275
8289
  functionParameter: {
8276
- number1: {
8290
+ issue: {
8277
8291
  name: string;
8278
8292
  detail: string;
8279
8293
  };
8280
- number2: {
8294
+ settlement: {
8295
+ name: string;
8296
+ detail: string;
8297
+ };
8298
+ rate: {
8299
+ name: string;
8300
+ detail: string;
8301
+ };
8302
+ par: {
8303
+ name: string;
8304
+ detail: string;
8305
+ };
8306
+ basis: {
8281
8307
  name: string;
8282
8308
  detail: string;
8283
8309
  };
@@ -8309,11 +8335,31 @@ declare const _default: {
8309
8335
  url: string;
8310
8336
  }[];
8311
8337
  functionParameter: {
8312
- number1: {
8338
+ cost: {
8313
8339
  name: string;
8314
8340
  detail: string;
8315
8341
  };
8316
- number2: {
8342
+ datePurchased: {
8343
+ name: string;
8344
+ detail: string;
8345
+ };
8346
+ firstPeriod: {
8347
+ name: string;
8348
+ detail: string;
8349
+ };
8350
+ salvage: {
8351
+ name: string;
8352
+ detail: string;
8353
+ };
8354
+ period: {
8355
+ name: string;
8356
+ detail: string;
8357
+ };
8358
+ rate: {
8359
+ name: string;
8360
+ detail: string;
8361
+ };
8362
+ basis: {
8317
8363
  name: string;
8318
8364
  detail: string;
8319
8365
  };
@@ -8327,11 +8373,19 @@ declare const _default: {
8327
8373
  url: string;
8328
8374
  }[];
8329
8375
  functionParameter: {
8330
- number1: {
8376
+ settlement: {
8331
8377
  name: string;
8332
8378
  detail: string;
8333
8379
  };
8334
- number2: {
8380
+ maturity: {
8381
+ name: string;
8382
+ detail: string;
8383
+ };
8384
+ frequency: {
8385
+ name: string;
8386
+ detail: string;
8387
+ };
8388
+ basis: {
8335
8389
  name: string;
8336
8390
  detail: string;
8337
8391
  };
@@ -8345,11 +8399,19 @@ declare const _default: {
8345
8399
  url: string;
8346
8400
  }[];
8347
8401
  functionParameter: {
8348
- number1: {
8402
+ settlement: {
8349
8403
  name: string;
8350
8404
  detail: string;
8351
8405
  };
8352
- number2: {
8406
+ maturity: {
8407
+ name: string;
8408
+ detail: string;
8409
+ };
8410
+ frequency: {
8411
+ name: string;
8412
+ detail: string;
8413
+ };
8414
+ basis: {
8353
8415
  name: string;
8354
8416
  detail: string;
8355
8417
  };
@@ -8363,11 +8425,19 @@ declare const _default: {
8363
8425
  url: string;
8364
8426
  }[];
8365
8427
  functionParameter: {
8366
- number1: {
8428
+ settlement: {
8367
8429
  name: string;
8368
8430
  detail: string;
8369
8431
  };
8370
- number2: {
8432
+ maturity: {
8433
+ name: string;
8434
+ detail: string;
8435
+ };
8436
+ frequency: {
8437
+ name: string;
8438
+ detail: string;
8439
+ };
8440
+ basis: {
8371
8441
  name: string;
8372
8442
  detail: string;
8373
8443
  };
@@ -8381,11 +8451,19 @@ declare const _default: {
8381
8451
  url: string;
8382
8452
  }[];
8383
8453
  functionParameter: {
8384
- number1: {
8454
+ settlement: {
8385
8455
  name: string;
8386
8456
  detail: string;
8387
8457
  };
8388
- number2: {
8458
+ maturity: {
8459
+ name: string;
8460
+ detail: string;
8461
+ };
8462
+ frequency: {
8463
+ name: string;
8464
+ detail: string;
8465
+ };
8466
+ basis: {
8389
8467
  name: string;
8390
8468
  detail: string;
8391
8469
  };
@@ -8399,11 +8477,19 @@ declare const _default: {
8399
8477
  url: string;
8400
8478
  }[];
8401
8479
  functionParameter: {
8402
- number1: {
8480
+ settlement: {
8403
8481
  name: string;
8404
8482
  detail: string;
8405
8483
  };
8406
- number2: {
8484
+ maturity: {
8485
+ name: string;
8486
+ detail: string;
8487
+ };
8488
+ frequency: {
8489
+ name: string;
8490
+ detail: string;
8491
+ };
8492
+ basis: {
8407
8493
  name: string;
8408
8494
  detail: string;
8409
8495
  };
@@ -8417,11 +8503,19 @@ declare const _default: {
8417
8503
  url: string;
8418
8504
  }[];
8419
8505
  functionParameter: {
8420
- number1: {
8506
+ settlement: {
8421
8507
  name: string;
8422
8508
  detail: string;
8423
8509
  };
8424
- number2: {
8510
+ maturity: {
8511
+ name: string;
8512
+ detail: string;
8513
+ };
8514
+ frequency: {
8515
+ name: string;
8516
+ detail: string;
8517
+ };
8518
+ basis: {
8425
8519
  name: string;
8426
8520
  detail: string;
8427
8521
  };
@@ -8435,11 +8529,27 @@ declare const _default: {
8435
8529
  url: string;
8436
8530
  }[];
8437
8531
  functionParameter: {
8438
- number1: {
8532
+ rate: {
8439
8533
  name: string;
8440
8534
  detail: string;
8441
8535
  };
8442
- number2: {
8536
+ nper: {
8537
+ name: string;
8538
+ detail: string;
8539
+ };
8540
+ pv: {
8541
+ name: string;
8542
+ detail: string;
8543
+ };
8544
+ startPeriod: {
8545
+ name: string;
8546
+ detail: string;
8547
+ };
8548
+ endPeriod: {
8549
+ name: string;
8550
+ detail: string;
8551
+ };
8552
+ type: {
8443
8553
  name: string;
8444
8554
  detail: string;
8445
8555
  };
@@ -8453,11 +8563,27 @@ declare const _default: {
8453
8563
  url: string;
8454
8564
  }[];
8455
8565
  functionParameter: {
8456
- number1: {
8566
+ rate: {
8457
8567
  name: string;
8458
8568
  detail: string;
8459
8569
  };
8460
- number2: {
8570
+ nper: {
8571
+ name: string;
8572
+ detail: string;
8573
+ };
8574
+ pv: {
8575
+ name: string;
8576
+ detail: string;
8577
+ };
8578
+ startPeriod: {
8579
+ name: string;
8580
+ detail: string;
8581
+ };
8582
+ endPeriod: {
8583
+ name: string;
8584
+ detail: string;
8585
+ };
8586
+ type: {
8461
8587
  name: string;
8462
8588
  detail: string;
8463
8589
  };
@@ -8471,11 +8597,23 @@ declare const _default: {
8471
8597
  url: string;
8472
8598
  }[];
8473
8599
  functionParameter: {
8474
- number1: {
8600
+ cost: {
8475
8601
  name: string;
8476
8602
  detail: string;
8477
8603
  };
8478
- number2: {
8604
+ salvage: {
8605
+ name: string;
8606
+ detail: string;
8607
+ };
8608
+ life: {
8609
+ name: string;
8610
+ detail: string;
8611
+ };
8612
+ period: {
8613
+ name: string;
8614
+ detail: string;
8615
+ };
8616
+ month: {
8479
8617
  name: string;
8480
8618
  detail: string;
8481
8619
  };
@@ -8489,11 +8627,23 @@ declare const _default: {
8489
8627
  url: string;
8490
8628
  }[];
8491
8629
  functionParameter: {
8492
- number1: {
8630
+ cost: {
8493
8631
  name: string;
8494
8632
  detail: string;
8495
8633
  };
8496
- number2: {
8634
+ salvage: {
8635
+ name: string;
8636
+ detail: string;
8637
+ };
8638
+ life: {
8639
+ name: string;
8640
+ detail: string;
8641
+ };
8642
+ period: {
8643
+ name: string;
8644
+ detail: string;
8645
+ };
8646
+ factor: {
8497
8647
  name: string;
8498
8648
  detail: string;
8499
8649
  };
@@ -8507,11 +8657,23 @@ declare const _default: {
8507
8657
  url: string;
8508
8658
  }[];
8509
8659
  functionParameter: {
8510
- number1: {
8660
+ settlement: {
8511
8661
  name: string;
8512
8662
  detail: string;
8513
8663
  };
8514
- number2: {
8664
+ maturity: {
8665
+ name: string;
8666
+ detail: string;
8667
+ };
8668
+ pr: {
8669
+ name: string;
8670
+ detail: string;
8671
+ };
8672
+ redemption: {
8673
+ name: string;
8674
+ detail: string;
8675
+ };
8676
+ basis: {
8515
8677
  name: string;
8516
8678
  detail: string;
8517
8679
  };
@@ -8525,11 +8687,11 @@ declare const _default: {
8525
8687
  url: string;
8526
8688
  }[];
8527
8689
  functionParameter: {
8528
- number1: {
8690
+ fractionalDollar: {
8529
8691
  name: string;
8530
8692
  detail: string;
8531
8693
  };
8532
- number2: {
8694
+ fraction: {
8533
8695
  name: string;
8534
8696
  detail: string;
8535
8697
  };
@@ -8543,11 +8705,11 @@ declare const _default: {
8543
8705
  url: string;
8544
8706
  }[];
8545
8707
  functionParameter: {
8546
- number1: {
8708
+ decimalDollar: {
8547
8709
  name: string;
8548
8710
  detail: string;
8549
8711
  };
8550
- number2: {
8712
+ fraction: {
8551
8713
  name: string;
8552
8714
  detail: string;
8553
8715
  };
@@ -8579,11 +8741,11 @@ declare const _default: {
8579
8741
  url: string;
8580
8742
  }[];
8581
8743
  functionParameter: {
8582
- number1: {
8744
+ nominalRate: {
8583
8745
  name: string;
8584
8746
  detail: string;
8585
8747
  };
8586
- number2: {
8748
+ npery: {
8587
8749
  name: string;
8588
8750
  detail: string;
8589
8751
  };
@@ -8597,11 +8759,23 @@ declare const _default: {
8597
8759
  url: string;
8598
8760
  }[];
8599
8761
  functionParameter: {
8600
- number1: {
8762
+ rate: {
8601
8763
  name: string;
8602
8764
  detail: string;
8603
8765
  };
8604
- number2: {
8766
+ nper: {
8767
+ name: string;
8768
+ detail: string;
8769
+ };
8770
+ pmt: {
8771
+ name: string;
8772
+ detail: string;
8773
+ };
8774
+ pv: {
8775
+ name: string;
8776
+ detail: string;
8777
+ };
8778
+ type: {
8605
8779
  name: string;
8606
8780
  detail: string;
8607
8781
  };
@@ -8615,11 +8789,11 @@ declare const _default: {
8615
8789
  url: string;
8616
8790
  }[];
8617
8791
  functionParameter: {
8618
- number1: {
8792
+ principal: {
8619
8793
  name: string;
8620
8794
  detail: string;
8621
8795
  };
8622
- number2: {
8796
+ schedule: {
8623
8797
  name: string;
8624
8798
  detail: string;
8625
8799
  };
@@ -8633,11 +8807,23 @@ declare const _default: {
8633
8807
  url: string;
8634
8808
  }[];
8635
8809
  functionParameter: {
8636
- number1: {
8810
+ settlement: {
8637
8811
  name: string;
8638
8812
  detail: string;
8639
8813
  };
8640
- number2: {
8814
+ maturity: {
8815
+ name: string;
8816
+ detail: string;
8817
+ };
8818
+ investment: {
8819
+ name: string;
8820
+ detail: string;
8821
+ };
8822
+ redemption: {
8823
+ name: string;
8824
+ detail: string;
8825
+ };
8826
+ basis: {
8641
8827
  name: string;
8642
8828
  detail: string;
8643
8829
  };
@@ -8651,11 +8837,27 @@ declare const _default: {
8651
8837
  url: string;
8652
8838
  }[];
8653
8839
  functionParameter: {
8654
- number1: {
8840
+ rate: {
8655
8841
  name: string;
8656
8842
  detail: string;
8657
8843
  };
8658
- number2: {
8844
+ per: {
8845
+ name: string;
8846
+ detail: string;
8847
+ };
8848
+ nper: {
8849
+ name: string;
8850
+ detail: string;
8851
+ };
8852
+ pv: {
8853
+ name: string;
8854
+ detail: string;
8855
+ };
8856
+ fv: {
8857
+ name: string;
8858
+ detail: string;
8859
+ };
8860
+ type: {
8659
8861
  name: string;
8660
8862
  detail: string;
8661
8863
  };
@@ -8687,11 +8889,19 @@ declare const _default: {
8687
8889
  url: string;
8688
8890
  }[];
8689
8891
  functionParameter: {
8690
- number1: {
8892
+ rate: {
8691
8893
  name: string;
8692
8894
  detail: string;
8693
8895
  };
8694
- number2: {
8896
+ per: {
8897
+ name: string;
8898
+ detail: string;
8899
+ };
8900
+ nper: {
8901
+ name: string;
8902
+ detail: string;
8903
+ };
8904
+ pv: {
8695
8905
  name: string;
8696
8906
  detail: string;
8697
8907
  };
@@ -8741,11 +8951,11 @@ declare const _default: {
8741
8951
  url: string;
8742
8952
  }[];
8743
8953
  functionParameter: {
8744
- number1: {
8954
+ effectRate: {
8745
8955
  name: string;
8746
8956
  detail: string;
8747
8957
  };
8748
- number2: {
8958
+ npery: {
8749
8959
  name: string;
8750
8960
  detail: string;
8751
8961
  };
@@ -8759,11 +8969,23 @@ declare const _default: {
8759
8969
  url: string;
8760
8970
  }[];
8761
8971
  functionParameter: {
8762
- number1: {
8972
+ rate: {
8763
8973
  name: string;
8764
8974
  detail: string;
8765
8975
  };
8766
- number2: {
8976
+ pmt: {
8977
+ name: string;
8978
+ detail: string;
8979
+ };
8980
+ pv: {
8981
+ name: string;
8982
+ detail: string;
8983
+ };
8984
+ fv: {
8985
+ name: string;
8986
+ detail: string;
8987
+ };
8988
+ type: {
8767
8989
  name: string;
8768
8990
  detail: string;
8769
8991
  };
@@ -8885,11 +9107,23 @@ declare const _default: {
8885
9107
  url: string;
8886
9108
  }[];
8887
9109
  functionParameter: {
8888
- number1: {
9110
+ rate: {
8889
9111
  name: string;
8890
9112
  detail: string;
8891
9113
  };
8892
- number2: {
9114
+ nper: {
9115
+ name: string;
9116
+ detail: string;
9117
+ };
9118
+ pv: {
9119
+ name: string;
9120
+ detail: string;
9121
+ };
9122
+ fv: {
9123
+ name: string;
9124
+ detail: string;
9125
+ };
9126
+ type: {
8893
9127
  name: string;
8894
9128
  detail: string;
8895
9129
  };
@@ -8903,11 +9137,27 @@ declare const _default: {
8903
9137
  url: string;
8904
9138
  }[];
8905
9139
  functionParameter: {
8906
- number1: {
9140
+ rate: {
8907
9141
  name: string;
8908
9142
  detail: string;
8909
9143
  };
8910
- number2: {
9144
+ per: {
9145
+ name: string;
9146
+ detail: string;
9147
+ };
9148
+ nper: {
9149
+ name: string;
9150
+ detail: string;
9151
+ };
9152
+ pv: {
9153
+ name: string;
9154
+ detail: string;
9155
+ };
9156
+ fv: {
9157
+ name: string;
9158
+ detail: string;
9159
+ };
9160
+ type: {
8911
9161
  name: string;
8912
9162
  detail: string;
8913
9163
  };
@@ -8975,11 +9225,23 @@ declare const _default: {
8975
9225
  url: string;
8976
9226
  }[];
8977
9227
  functionParameter: {
8978
- number1: {
9228
+ rate: {
8979
9229
  name: string;
8980
9230
  detail: string;
8981
9231
  };
8982
- number2: {
9232
+ nper: {
9233
+ name: string;
9234
+ detail: string;
9235
+ };
9236
+ pmt: {
9237
+ name: string;
9238
+ detail: string;
9239
+ };
9240
+ fv: {
9241
+ name: string;
9242
+ detail: string;
9243
+ };
9244
+ type: {
8983
9245
  name: string;
8984
9246
  detail: string;
8985
9247
  };
@@ -8993,11 +9255,27 @@ declare const _default: {
8993
9255
  url: string;
8994
9256
  }[];
8995
9257
  functionParameter: {
8996
- number1: {
9258
+ nper: {
8997
9259
  name: string;
8998
9260
  detail: string;
8999
9261
  };
9000
- number2: {
9262
+ pmt: {
9263
+ name: string;
9264
+ detail: string;
9265
+ };
9266
+ pv: {
9267
+ name: string;
9268
+ detail: string;
9269
+ };
9270
+ fv: {
9271
+ name: string;
9272
+ detail: string;
9273
+ };
9274
+ type: {
9275
+ name: string;
9276
+ detail: string;
9277
+ };
9278
+ guess: {
9001
9279
  name: string;
9002
9280
  detail: string;
9003
9281
  };