@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
  };
@@ -3625,11 +3619,7 @@ declare const _default: {
3625
3619
  url: string;
3626
3620
  }[];
3627
3621
  functionParameter: {
3628
- number1: {
3629
- name: string;
3630
- detail: string;
3631
- };
3632
- number2: {
3622
+ reference: {
3633
3623
  name: string;
3634
3624
  detail: string;
3635
3625
  };
@@ -8207,11 +8197,35 @@ declare const _default: {
8207
8197
  url: string;
8208
8198
  }[];
8209
8199
  functionParameter: {
8210
- number1: {
8200
+ issue: {
8211
8201
  name: string;
8212
8202
  detail: string;
8213
8203
  };
8214
- number2: {
8204
+ firstInterest: {
8205
+ name: string;
8206
+ detail: string;
8207
+ };
8208
+ settlement: {
8209
+ name: string;
8210
+ detail: string;
8211
+ };
8212
+ rate: {
8213
+ name: string;
8214
+ detail: string;
8215
+ };
8216
+ par: {
8217
+ name: string;
8218
+ detail: string;
8219
+ };
8220
+ frequency: {
8221
+ name: string;
8222
+ detail: string;
8223
+ };
8224
+ basis: {
8225
+ name: string;
8226
+ detail: string;
8227
+ };
8228
+ calcMethod: {
8215
8229
  name: string;
8216
8230
  detail: string;
8217
8231
  };
@@ -8225,11 +8239,23 @@ declare const _default: {
8225
8239
  url: string;
8226
8240
  }[];
8227
8241
  functionParameter: {
8228
- number1: {
8242
+ issue: {
8229
8243
  name: string;
8230
8244
  detail: string;
8231
8245
  };
8232
- number2: {
8246
+ settlement: {
8247
+ name: string;
8248
+ detail: string;
8249
+ };
8250
+ rate: {
8251
+ name: string;
8252
+ detail: string;
8253
+ };
8254
+ par: {
8255
+ name: string;
8256
+ detail: string;
8257
+ };
8258
+ basis: {
8233
8259
  name: string;
8234
8260
  detail: string;
8235
8261
  };
@@ -8261,11 +8287,31 @@ declare const _default: {
8261
8287
  url: string;
8262
8288
  }[];
8263
8289
  functionParameter: {
8264
- number1: {
8290
+ cost: {
8265
8291
  name: string;
8266
8292
  detail: string;
8267
8293
  };
8268
- number2: {
8294
+ datePurchased: {
8295
+ name: string;
8296
+ detail: string;
8297
+ };
8298
+ firstPeriod: {
8299
+ name: string;
8300
+ detail: string;
8301
+ };
8302
+ salvage: {
8303
+ name: string;
8304
+ detail: string;
8305
+ };
8306
+ period: {
8307
+ name: string;
8308
+ detail: string;
8309
+ };
8310
+ rate: {
8311
+ name: string;
8312
+ detail: string;
8313
+ };
8314
+ basis: {
8269
8315
  name: string;
8270
8316
  detail: string;
8271
8317
  };
@@ -8279,11 +8325,19 @@ declare const _default: {
8279
8325
  url: string;
8280
8326
  }[];
8281
8327
  functionParameter: {
8282
- number1: {
8328
+ settlement: {
8283
8329
  name: string;
8284
8330
  detail: string;
8285
8331
  };
8286
- number2: {
8332
+ maturity: {
8333
+ name: string;
8334
+ detail: string;
8335
+ };
8336
+ frequency: {
8337
+ name: string;
8338
+ detail: string;
8339
+ };
8340
+ basis: {
8287
8341
  name: string;
8288
8342
  detail: string;
8289
8343
  };
@@ -8297,11 +8351,19 @@ declare const _default: {
8297
8351
  url: string;
8298
8352
  }[];
8299
8353
  functionParameter: {
8300
- number1: {
8354
+ settlement: {
8301
8355
  name: string;
8302
8356
  detail: string;
8303
8357
  };
8304
- number2: {
8358
+ maturity: {
8359
+ name: string;
8360
+ detail: string;
8361
+ };
8362
+ frequency: {
8363
+ name: string;
8364
+ detail: string;
8365
+ };
8366
+ basis: {
8305
8367
  name: string;
8306
8368
  detail: string;
8307
8369
  };
@@ -8315,11 +8377,19 @@ declare const _default: {
8315
8377
  url: string;
8316
8378
  }[];
8317
8379
  functionParameter: {
8318
- number1: {
8380
+ settlement: {
8319
8381
  name: string;
8320
8382
  detail: string;
8321
8383
  };
8322
- number2: {
8384
+ maturity: {
8385
+ name: string;
8386
+ detail: string;
8387
+ };
8388
+ frequency: {
8389
+ name: string;
8390
+ detail: string;
8391
+ };
8392
+ basis: {
8323
8393
  name: string;
8324
8394
  detail: string;
8325
8395
  };
@@ -8333,11 +8403,19 @@ declare const _default: {
8333
8403
  url: string;
8334
8404
  }[];
8335
8405
  functionParameter: {
8336
- number1: {
8406
+ settlement: {
8337
8407
  name: string;
8338
8408
  detail: string;
8339
8409
  };
8340
- number2: {
8410
+ maturity: {
8411
+ name: string;
8412
+ detail: string;
8413
+ };
8414
+ frequency: {
8415
+ name: string;
8416
+ detail: string;
8417
+ };
8418
+ basis: {
8341
8419
  name: string;
8342
8420
  detail: string;
8343
8421
  };
@@ -8351,11 +8429,19 @@ declare const _default: {
8351
8429
  url: string;
8352
8430
  }[];
8353
8431
  functionParameter: {
8354
- number1: {
8432
+ settlement: {
8355
8433
  name: string;
8356
8434
  detail: string;
8357
8435
  };
8358
- number2: {
8436
+ maturity: {
8437
+ name: string;
8438
+ detail: string;
8439
+ };
8440
+ frequency: {
8441
+ name: string;
8442
+ detail: string;
8443
+ };
8444
+ basis: {
8359
8445
  name: string;
8360
8446
  detail: string;
8361
8447
  };
@@ -8369,11 +8455,19 @@ declare const _default: {
8369
8455
  url: string;
8370
8456
  }[];
8371
8457
  functionParameter: {
8372
- number1: {
8458
+ settlement: {
8373
8459
  name: string;
8374
8460
  detail: string;
8375
8461
  };
8376
- number2: {
8462
+ maturity: {
8463
+ name: string;
8464
+ detail: string;
8465
+ };
8466
+ frequency: {
8467
+ name: string;
8468
+ detail: string;
8469
+ };
8470
+ basis: {
8377
8471
  name: string;
8378
8472
  detail: string;
8379
8473
  };
@@ -8387,11 +8481,27 @@ declare const _default: {
8387
8481
  url: string;
8388
8482
  }[];
8389
8483
  functionParameter: {
8390
- number1: {
8484
+ rate: {
8391
8485
  name: string;
8392
8486
  detail: string;
8393
8487
  };
8394
- number2: {
8488
+ nper: {
8489
+ name: string;
8490
+ detail: string;
8491
+ };
8492
+ pv: {
8493
+ name: string;
8494
+ detail: string;
8495
+ };
8496
+ startPeriod: {
8497
+ name: string;
8498
+ detail: string;
8499
+ };
8500
+ endPeriod: {
8501
+ name: string;
8502
+ detail: string;
8503
+ };
8504
+ type: {
8395
8505
  name: string;
8396
8506
  detail: string;
8397
8507
  };
@@ -8405,11 +8515,27 @@ declare const _default: {
8405
8515
  url: string;
8406
8516
  }[];
8407
8517
  functionParameter: {
8408
- number1: {
8518
+ rate: {
8409
8519
  name: string;
8410
8520
  detail: string;
8411
8521
  };
8412
- number2: {
8522
+ nper: {
8523
+ name: string;
8524
+ detail: string;
8525
+ };
8526
+ pv: {
8527
+ name: string;
8528
+ detail: string;
8529
+ };
8530
+ startPeriod: {
8531
+ name: string;
8532
+ detail: string;
8533
+ };
8534
+ endPeriod: {
8535
+ name: string;
8536
+ detail: string;
8537
+ };
8538
+ type: {
8413
8539
  name: string;
8414
8540
  detail: string;
8415
8541
  };
@@ -8423,11 +8549,23 @@ declare const _default: {
8423
8549
  url: string;
8424
8550
  }[];
8425
8551
  functionParameter: {
8426
- number1: {
8552
+ cost: {
8427
8553
  name: string;
8428
8554
  detail: string;
8429
8555
  };
8430
- number2: {
8556
+ salvage: {
8557
+ name: string;
8558
+ detail: string;
8559
+ };
8560
+ life: {
8561
+ name: string;
8562
+ detail: string;
8563
+ };
8564
+ period: {
8565
+ name: string;
8566
+ detail: string;
8567
+ };
8568
+ month: {
8431
8569
  name: string;
8432
8570
  detail: string;
8433
8571
  };
@@ -8441,11 +8579,23 @@ declare const _default: {
8441
8579
  url: string;
8442
8580
  }[];
8443
8581
  functionParameter: {
8444
- number1: {
8582
+ cost: {
8445
8583
  name: string;
8446
8584
  detail: string;
8447
8585
  };
8448
- number2: {
8586
+ salvage: {
8587
+ name: string;
8588
+ detail: string;
8589
+ };
8590
+ life: {
8591
+ name: string;
8592
+ detail: string;
8593
+ };
8594
+ period: {
8595
+ name: string;
8596
+ detail: string;
8597
+ };
8598
+ factor: {
8449
8599
  name: string;
8450
8600
  detail: string;
8451
8601
  };
@@ -8459,11 +8609,23 @@ declare const _default: {
8459
8609
  url: string;
8460
8610
  }[];
8461
8611
  functionParameter: {
8462
- number1: {
8612
+ settlement: {
8463
8613
  name: string;
8464
8614
  detail: string;
8465
8615
  };
8466
- number2: {
8616
+ maturity: {
8617
+ name: string;
8618
+ detail: string;
8619
+ };
8620
+ pr: {
8621
+ name: string;
8622
+ detail: string;
8623
+ };
8624
+ redemption: {
8625
+ name: string;
8626
+ detail: string;
8627
+ };
8628
+ basis: {
8467
8629
  name: string;
8468
8630
  detail: string;
8469
8631
  };
@@ -8477,11 +8639,11 @@ declare const _default: {
8477
8639
  url: string;
8478
8640
  }[];
8479
8641
  functionParameter: {
8480
- number1: {
8642
+ fractionalDollar: {
8481
8643
  name: string;
8482
8644
  detail: string;
8483
8645
  };
8484
- number2: {
8646
+ fraction: {
8485
8647
  name: string;
8486
8648
  detail: string;
8487
8649
  };
@@ -8495,11 +8657,11 @@ declare const _default: {
8495
8657
  url: string;
8496
8658
  }[];
8497
8659
  functionParameter: {
8498
- number1: {
8660
+ decimalDollar: {
8499
8661
  name: string;
8500
8662
  detail: string;
8501
8663
  };
8502
- number2: {
8664
+ fraction: {
8503
8665
  name: string;
8504
8666
  detail: string;
8505
8667
  };
@@ -8531,11 +8693,11 @@ declare const _default: {
8531
8693
  url: string;
8532
8694
  }[];
8533
8695
  functionParameter: {
8534
- number1: {
8696
+ nominalRate: {
8535
8697
  name: string;
8536
8698
  detail: string;
8537
8699
  };
8538
- number2: {
8700
+ npery: {
8539
8701
  name: string;
8540
8702
  detail: string;
8541
8703
  };
@@ -8549,11 +8711,23 @@ declare const _default: {
8549
8711
  url: string;
8550
8712
  }[];
8551
8713
  functionParameter: {
8552
- number1: {
8714
+ rate: {
8553
8715
  name: string;
8554
8716
  detail: string;
8555
8717
  };
8556
- number2: {
8718
+ nper: {
8719
+ name: string;
8720
+ detail: string;
8721
+ };
8722
+ pmt: {
8723
+ name: string;
8724
+ detail: string;
8725
+ };
8726
+ pv: {
8727
+ name: string;
8728
+ detail: string;
8729
+ };
8730
+ type: {
8557
8731
  name: string;
8558
8732
  detail: string;
8559
8733
  };
@@ -8567,11 +8741,11 @@ declare const _default: {
8567
8741
  url: string;
8568
8742
  }[];
8569
8743
  functionParameter: {
8570
- number1: {
8744
+ principal: {
8571
8745
  name: string;
8572
8746
  detail: string;
8573
8747
  };
8574
- number2: {
8748
+ schedule: {
8575
8749
  name: string;
8576
8750
  detail: string;
8577
8751
  };
@@ -8585,11 +8759,23 @@ declare const _default: {
8585
8759
  url: string;
8586
8760
  }[];
8587
8761
  functionParameter: {
8588
- number1: {
8762
+ settlement: {
8589
8763
  name: string;
8590
8764
  detail: string;
8591
8765
  };
8592
- number2: {
8766
+ maturity: {
8767
+ name: string;
8768
+ detail: string;
8769
+ };
8770
+ investment: {
8771
+ name: string;
8772
+ detail: string;
8773
+ };
8774
+ redemption: {
8775
+ name: string;
8776
+ detail: string;
8777
+ };
8778
+ basis: {
8593
8779
  name: string;
8594
8780
  detail: string;
8595
8781
  };
@@ -8603,11 +8789,27 @@ declare const _default: {
8603
8789
  url: string;
8604
8790
  }[];
8605
8791
  functionParameter: {
8606
- number1: {
8792
+ rate: {
8607
8793
  name: string;
8608
8794
  detail: string;
8609
8795
  };
8610
- number2: {
8796
+ per: {
8797
+ name: string;
8798
+ detail: string;
8799
+ };
8800
+ nper: {
8801
+ name: string;
8802
+ detail: string;
8803
+ };
8804
+ pv: {
8805
+ name: string;
8806
+ detail: string;
8807
+ };
8808
+ fv: {
8809
+ name: string;
8810
+ detail: string;
8811
+ };
8812
+ type: {
8611
8813
  name: string;
8612
8814
  detail: string;
8613
8815
  };
@@ -8639,11 +8841,19 @@ declare const _default: {
8639
8841
  url: string;
8640
8842
  }[];
8641
8843
  functionParameter: {
8642
- number1: {
8844
+ rate: {
8643
8845
  name: string;
8644
8846
  detail: string;
8645
8847
  };
8646
- number2: {
8848
+ per: {
8849
+ name: string;
8850
+ detail: string;
8851
+ };
8852
+ nper: {
8853
+ name: string;
8854
+ detail: string;
8855
+ };
8856
+ pv: {
8647
8857
  name: string;
8648
8858
  detail: string;
8649
8859
  };
@@ -8693,11 +8903,11 @@ declare const _default: {
8693
8903
  url: string;
8694
8904
  }[];
8695
8905
  functionParameter: {
8696
- number1: {
8906
+ effectRate: {
8697
8907
  name: string;
8698
8908
  detail: string;
8699
8909
  };
8700
- number2: {
8910
+ npery: {
8701
8911
  name: string;
8702
8912
  detail: string;
8703
8913
  };
@@ -8711,11 +8921,23 @@ declare const _default: {
8711
8921
  url: string;
8712
8922
  }[];
8713
8923
  functionParameter: {
8714
- number1: {
8924
+ rate: {
8715
8925
  name: string;
8716
8926
  detail: string;
8717
8927
  };
8718
- number2: {
8928
+ pmt: {
8929
+ name: string;
8930
+ detail: string;
8931
+ };
8932
+ pv: {
8933
+ name: string;
8934
+ detail: string;
8935
+ };
8936
+ fv: {
8937
+ name: string;
8938
+ detail: string;
8939
+ };
8940
+ type: {
8719
8941
  name: string;
8720
8942
  detail: string;
8721
8943
  };
@@ -8837,11 +9059,23 @@ declare const _default: {
8837
9059
  url: string;
8838
9060
  }[];
8839
9061
  functionParameter: {
8840
- number1: {
9062
+ rate: {
8841
9063
  name: string;
8842
9064
  detail: string;
8843
9065
  };
8844
- number2: {
9066
+ nper: {
9067
+ name: string;
9068
+ detail: string;
9069
+ };
9070
+ pv: {
9071
+ name: string;
9072
+ detail: string;
9073
+ };
9074
+ fv: {
9075
+ name: string;
9076
+ detail: string;
9077
+ };
9078
+ type: {
8845
9079
  name: string;
8846
9080
  detail: string;
8847
9081
  };
@@ -8855,11 +9089,27 @@ declare const _default: {
8855
9089
  url: string;
8856
9090
  }[];
8857
9091
  functionParameter: {
8858
- number1: {
9092
+ rate: {
8859
9093
  name: string;
8860
9094
  detail: string;
8861
9095
  };
8862
- number2: {
9096
+ per: {
9097
+ name: string;
9098
+ detail: string;
9099
+ };
9100
+ nper: {
9101
+ name: string;
9102
+ detail: string;
9103
+ };
9104
+ pv: {
9105
+ name: string;
9106
+ detail: string;
9107
+ };
9108
+ fv: {
9109
+ name: string;
9110
+ detail: string;
9111
+ };
9112
+ type: {
8863
9113
  name: string;
8864
9114
  detail: string;
8865
9115
  };
@@ -8927,11 +9177,23 @@ declare const _default: {
8927
9177
  url: string;
8928
9178
  }[];
8929
9179
  functionParameter: {
8930
- number1: {
9180
+ rate: {
8931
9181
  name: string;
8932
9182
  detail: string;
8933
9183
  };
8934
- number2: {
9184
+ nper: {
9185
+ name: string;
9186
+ detail: string;
9187
+ };
9188
+ pmt: {
9189
+ name: string;
9190
+ detail: string;
9191
+ };
9192
+ fv: {
9193
+ name: string;
9194
+ detail: string;
9195
+ };
9196
+ type: {
8935
9197
  name: string;
8936
9198
  detail: string;
8937
9199
  };
@@ -8945,11 +9207,27 @@ declare const _default: {
8945
9207
  url: string;
8946
9208
  }[];
8947
9209
  functionParameter: {
8948
- number1: {
9210
+ nper: {
8949
9211
  name: string;
8950
9212
  detail: string;
8951
9213
  };
8952
- number2: {
9214
+ pmt: {
9215
+ name: string;
9216
+ detail: string;
9217
+ };
9218
+ pv: {
9219
+ name: string;
9220
+ detail: string;
9221
+ };
9222
+ fv: {
9223
+ name: string;
9224
+ detail: string;
9225
+ };
9226
+ type: {
9227
+ name: string;
9228
+ detail: string;
9229
+ };
9230
+ guess: {
8953
9231
  name: string;
8954
9232
  detail: string;
8955
9233
  };