@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
  };
@@ -6507,11 +6497,7 @@ declare const _default: {
6507
6497
  url: string;
6508
6498
  }[];
6509
6499
  functionParameter: {
6510
- number1: {
6511
- name: string;
6512
- detail: string;
6513
- };
6514
- number2: {
6500
+ number: {
6515
6501
  name: string;
6516
6502
  detail: string;
6517
6503
  };
@@ -6561,11 +6547,7 @@ declare const _default: {
6561
6547
  url: string;
6562
6548
  }[];
6563
6549
  functionParameter: {
6564
- number1: {
6565
- name: string;
6566
- detail: string;
6567
- };
6568
- number2: {
6550
+ number: {
6569
6551
  name: string;
6570
6552
  detail: string;
6571
6553
  };
@@ -6579,11 +6561,7 @@ declare const _default: {
6579
6561
  url: string;
6580
6562
  }[];
6581
6563
  functionParameter: {
6582
- number1: {
6583
- name: string;
6584
- detail: string;
6585
- };
6586
- number2: {
6564
+ number: {
6587
6565
  name: string;
6588
6566
  detail: string;
6589
6567
  };
@@ -6597,11 +6575,7 @@ declare const _default: {
6597
6575
  url: string;
6598
6576
  }[];
6599
6577
  functionParameter: {
6600
- number1: {
6601
- name: string;
6602
- detail: string;
6603
- };
6604
- number2: {
6578
+ number: {
6605
6579
  name: string;
6606
6580
  detail: string;
6607
6581
  };
@@ -6615,11 +6589,11 @@ declare const _default: {
6615
6589
  url: string;
6616
6590
  }[];
6617
6591
  functionParameter: {
6618
- number1: {
6592
+ xNum: {
6619
6593
  name: string;
6620
6594
  detail: string;
6621
6595
  };
6622
- number2: {
6596
+ yNum: {
6623
6597
  name: string;
6624
6598
  detail: string;
6625
6599
  };
@@ -6633,11 +6607,7 @@ declare const _default: {
6633
6607
  url: string;
6634
6608
  }[];
6635
6609
  functionParameter: {
6636
- number1: {
6637
- name: string;
6638
- detail: string;
6639
- };
6640
- number2: {
6610
+ number: {
6641
6611
  name: string;
6642
6612
  detail: string;
6643
6613
  };
@@ -6659,6 +6629,10 @@ declare const _default: {
6659
6629
  name: string;
6660
6630
  detail: string;
6661
6631
  };
6632
+ minLength: {
6633
+ name: string;
6634
+ detail: string;
6635
+ };
6662
6636
  };
6663
6637
  };
6664
6638
  CEILING: {
@@ -6763,11 +6737,7 @@ declare const _default: {
6763
6737
  url: string;
6764
6738
  }[];
6765
6739
  functionParameter: {
6766
- number1: {
6767
- name: string;
6768
- detail: string;
6769
- };
6770
- number2: {
6740
+ number: {
6771
6741
  name: string;
6772
6742
  detail: string;
6773
6743
  };
@@ -6781,11 +6751,7 @@ declare const _default: {
6781
6751
  url: string;
6782
6752
  }[];
6783
6753
  functionParameter: {
6784
- number1: {
6785
- name: string;
6786
- detail: string;
6787
- };
6788
- number2: {
6754
+ number: {
6789
6755
  name: string;
6790
6756
  detail: string;
6791
6757
  };
@@ -6799,11 +6765,7 @@ declare const _default: {
6799
6765
  url: string;
6800
6766
  }[];
6801
6767
  functionParameter: {
6802
- number1: {
6803
- name: string;
6804
- detail: string;
6805
- };
6806
- number2: {
6768
+ number: {
6807
6769
  name: string;
6808
6770
  detail: string;
6809
6771
  };
@@ -6817,11 +6779,7 @@ declare const _default: {
6817
6779
  url: string;
6818
6780
  }[];
6819
6781
  functionParameter: {
6820
- number1: {
6821
- name: string;
6822
- detail: string;
6823
- };
6824
- number2: {
6782
+ number: {
6825
6783
  name: string;
6826
6784
  detail: string;
6827
6785
  };
@@ -6835,11 +6793,7 @@ declare const _default: {
6835
6793
  url: string;
6836
6794
  }[];
6837
6795
  functionParameter: {
6838
- number1: {
6839
- name: string;
6840
- detail: string;
6841
- };
6842
- number2: {
6796
+ number: {
6843
6797
  name: string;
6844
6798
  detail: string;
6845
6799
  };
@@ -6853,11 +6807,7 @@ declare const _default: {
6853
6807
  url: string;
6854
6808
  }[];
6855
6809
  functionParameter: {
6856
- number1: {
6857
- name: string;
6858
- detail: string;
6859
- };
6860
- number2: {
6810
+ number: {
6861
6811
  name: string;
6862
6812
  detail: string;
6863
6813
  };
@@ -7571,11 +7521,7 @@ declare const _default: {
7571
7521
  url: string;
7572
7522
  }[];
7573
7523
  functionParameter: {
7574
- number1: {
7575
- name: string;
7576
- detail: string;
7577
- };
7578
- number2: {
7524
+ number: {
7579
7525
  name: string;
7580
7526
  detail: string;
7581
7527
  };
@@ -7589,11 +7535,7 @@ declare const _default: {
7589
7535
  url: string;
7590
7536
  }[];
7591
7537
  functionParameter: {
7592
- number1: {
7593
- name: string;
7594
- detail: string;
7595
- };
7596
- number2: {
7538
+ number: {
7597
7539
  name: string;
7598
7540
  detail: string;
7599
7541
  };
@@ -7817,11 +7759,7 @@ declare const _default: {
7817
7759
  url: string;
7818
7760
  }[];
7819
7761
  functionParameter: {
7820
- number1: {
7821
- name: string;
7822
- detail: string;
7823
- };
7824
- number2: {
7762
+ number: {
7825
7763
  name: string;
7826
7764
  detail: string;
7827
7765
  };
@@ -7835,11 +7773,7 @@ declare const _default: {
7835
7773
  url: string;
7836
7774
  }[];
7837
7775
  functionParameter: {
7838
- number1: {
7839
- name: string;
7840
- detail: string;
7841
- };
7842
- number2: {
7776
+ number: {
7843
7777
  name: string;
7844
7778
  detail: string;
7845
7779
  };
@@ -8075,11 +8009,15 @@ declare const _default: {
8075
8009
  url: string;
8076
8010
  }[];
8077
8011
  functionParameter: {
8078
- number1: {
8012
+ startDate: {
8079
8013
  name: string;
8080
8014
  detail: string;
8081
8015
  };
8082
- number2: {
8016
+ endDate: {
8017
+ name: string;
8018
+ detail: string;
8019
+ };
8020
+ holidays: {
8083
8021
  name: string;
8084
8022
  detail: string;
8085
8023
  };
@@ -8093,11 +8031,19 @@ declare const _default: {
8093
8031
  url: string;
8094
8032
  }[];
8095
8033
  functionParameter: {
8096
- number1: {
8034
+ startDate: {
8097
8035
  name: string;
8098
8036
  detail: string;
8099
8037
  };
8100
- number2: {
8038
+ endDate: {
8039
+ name: string;
8040
+ detail: string;
8041
+ };
8042
+ weekend: {
8043
+ name: string;
8044
+ detail: string;
8045
+ };
8046
+ holidays: {
8101
8047
  name: string;
8102
8048
  detail: string;
8103
8049
  };
@@ -8215,11 +8161,15 @@ declare const _default: {
8215
8161
  url: string;
8216
8162
  }[];
8217
8163
  functionParameter: {
8218
- number1: {
8164
+ startDate: {
8219
8165
  name: string;
8220
8166
  detail: string;
8221
8167
  };
8222
- number2: {
8168
+ days: {
8169
+ name: string;
8170
+ detail: string;
8171
+ };
8172
+ holidays: {
8223
8173
  name: string;
8224
8174
  detail: string;
8225
8175
  };
@@ -8233,11 +8183,19 @@ declare const _default: {
8233
8183
  url: string;
8234
8184
  }[];
8235
8185
  functionParameter: {
8236
- number1: {
8186
+ startDate: {
8237
8187
  name: string;
8238
8188
  detail: string;
8239
8189
  };
8240
- number2: {
8190
+ days: {
8191
+ name: string;
8192
+ detail: string;
8193
+ };
8194
+ weekend: {
8195
+ name: string;
8196
+ detail: string;
8197
+ };
8198
+ holidays: {
8241
8199
  name: string;
8242
8200
  detail: string;
8243
8201
  };
@@ -8287,11 +8245,35 @@ declare const _default: {
8287
8245
  url: string;
8288
8246
  }[];
8289
8247
  functionParameter: {
8290
- number1: {
8248
+ issue: {
8291
8249
  name: string;
8292
8250
  detail: string;
8293
8251
  };
8294
- 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: {
8295
8277
  name: string;
8296
8278
  detail: string;
8297
8279
  };
@@ -8305,11 +8287,23 @@ declare const _default: {
8305
8287
  url: string;
8306
8288
  }[];
8307
8289
  functionParameter: {
8308
- number1: {
8290
+ issue: {
8309
8291
  name: string;
8310
8292
  detail: string;
8311
8293
  };
8312
- 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: {
8313
8307
  name: string;
8314
8308
  detail: string;
8315
8309
  };
@@ -8341,11 +8335,31 @@ declare const _default: {
8341
8335
  url: string;
8342
8336
  }[];
8343
8337
  functionParameter: {
8344
- number1: {
8338
+ cost: {
8345
8339
  name: string;
8346
8340
  detail: string;
8347
8341
  };
8348
- 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: {
8349
8363
  name: string;
8350
8364
  detail: string;
8351
8365
  };
@@ -8359,11 +8373,19 @@ declare const _default: {
8359
8373
  url: string;
8360
8374
  }[];
8361
8375
  functionParameter: {
8362
- number1: {
8376
+ settlement: {
8363
8377
  name: string;
8364
8378
  detail: string;
8365
8379
  };
8366
- number2: {
8380
+ maturity: {
8381
+ name: string;
8382
+ detail: string;
8383
+ };
8384
+ frequency: {
8385
+ name: string;
8386
+ detail: string;
8387
+ };
8388
+ basis: {
8367
8389
  name: string;
8368
8390
  detail: string;
8369
8391
  };
@@ -8377,11 +8399,19 @@ declare const _default: {
8377
8399
  url: string;
8378
8400
  }[];
8379
8401
  functionParameter: {
8380
- number1: {
8402
+ settlement: {
8381
8403
  name: string;
8382
8404
  detail: string;
8383
8405
  };
8384
- number2: {
8406
+ maturity: {
8407
+ name: string;
8408
+ detail: string;
8409
+ };
8410
+ frequency: {
8411
+ name: string;
8412
+ detail: string;
8413
+ };
8414
+ basis: {
8385
8415
  name: string;
8386
8416
  detail: string;
8387
8417
  };
@@ -8395,11 +8425,19 @@ declare const _default: {
8395
8425
  url: string;
8396
8426
  }[];
8397
8427
  functionParameter: {
8398
- number1: {
8428
+ settlement: {
8399
8429
  name: string;
8400
8430
  detail: string;
8401
8431
  };
8402
- number2: {
8432
+ maturity: {
8433
+ name: string;
8434
+ detail: string;
8435
+ };
8436
+ frequency: {
8437
+ name: string;
8438
+ detail: string;
8439
+ };
8440
+ basis: {
8403
8441
  name: string;
8404
8442
  detail: string;
8405
8443
  };
@@ -8413,11 +8451,19 @@ declare const _default: {
8413
8451
  url: string;
8414
8452
  }[];
8415
8453
  functionParameter: {
8416
- number1: {
8454
+ settlement: {
8417
8455
  name: string;
8418
8456
  detail: string;
8419
8457
  };
8420
- number2: {
8458
+ maturity: {
8459
+ name: string;
8460
+ detail: string;
8461
+ };
8462
+ frequency: {
8463
+ name: string;
8464
+ detail: string;
8465
+ };
8466
+ basis: {
8421
8467
  name: string;
8422
8468
  detail: string;
8423
8469
  };
@@ -8431,11 +8477,19 @@ declare const _default: {
8431
8477
  url: string;
8432
8478
  }[];
8433
8479
  functionParameter: {
8434
- number1: {
8480
+ settlement: {
8435
8481
  name: string;
8436
8482
  detail: string;
8437
8483
  };
8438
- number2: {
8484
+ maturity: {
8485
+ name: string;
8486
+ detail: string;
8487
+ };
8488
+ frequency: {
8489
+ name: string;
8490
+ detail: string;
8491
+ };
8492
+ basis: {
8439
8493
  name: string;
8440
8494
  detail: string;
8441
8495
  };
@@ -8449,11 +8503,19 @@ declare const _default: {
8449
8503
  url: string;
8450
8504
  }[];
8451
8505
  functionParameter: {
8452
- number1: {
8506
+ settlement: {
8453
8507
  name: string;
8454
8508
  detail: string;
8455
8509
  };
8456
- number2: {
8510
+ maturity: {
8511
+ name: string;
8512
+ detail: string;
8513
+ };
8514
+ frequency: {
8515
+ name: string;
8516
+ detail: string;
8517
+ };
8518
+ basis: {
8457
8519
  name: string;
8458
8520
  detail: string;
8459
8521
  };
@@ -8467,11 +8529,27 @@ declare const _default: {
8467
8529
  url: string;
8468
8530
  }[];
8469
8531
  functionParameter: {
8470
- number1: {
8532
+ rate: {
8471
8533
  name: string;
8472
8534
  detail: string;
8473
8535
  };
8474
- 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: {
8475
8553
  name: string;
8476
8554
  detail: string;
8477
8555
  };
@@ -8485,11 +8563,27 @@ declare const _default: {
8485
8563
  url: string;
8486
8564
  }[];
8487
8565
  functionParameter: {
8488
- number1: {
8566
+ rate: {
8489
8567
  name: string;
8490
8568
  detail: string;
8491
8569
  };
8492
- 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: {
8493
8587
  name: string;
8494
8588
  detail: string;
8495
8589
  };
@@ -8503,11 +8597,23 @@ declare const _default: {
8503
8597
  url: string;
8504
8598
  }[];
8505
8599
  functionParameter: {
8506
- number1: {
8600
+ cost: {
8507
8601
  name: string;
8508
8602
  detail: string;
8509
8603
  };
8510
- 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: {
8511
8617
  name: string;
8512
8618
  detail: string;
8513
8619
  };
@@ -8521,11 +8627,23 @@ declare const _default: {
8521
8627
  url: string;
8522
8628
  }[];
8523
8629
  functionParameter: {
8524
- number1: {
8630
+ cost: {
8525
8631
  name: string;
8526
8632
  detail: string;
8527
8633
  };
8528
- 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: {
8529
8647
  name: string;
8530
8648
  detail: string;
8531
8649
  };
@@ -8539,11 +8657,23 @@ declare const _default: {
8539
8657
  url: string;
8540
8658
  }[];
8541
8659
  functionParameter: {
8542
- number1: {
8660
+ settlement: {
8543
8661
  name: string;
8544
8662
  detail: string;
8545
8663
  };
8546
- 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: {
8547
8677
  name: string;
8548
8678
  detail: string;
8549
8679
  };
@@ -8557,11 +8687,11 @@ declare const _default: {
8557
8687
  url: string;
8558
8688
  }[];
8559
8689
  functionParameter: {
8560
- number1: {
8690
+ fractionalDollar: {
8561
8691
  name: string;
8562
8692
  detail: string;
8563
8693
  };
8564
- number2: {
8694
+ fraction: {
8565
8695
  name: string;
8566
8696
  detail: string;
8567
8697
  };
@@ -8575,11 +8705,11 @@ declare const _default: {
8575
8705
  url: string;
8576
8706
  }[];
8577
8707
  functionParameter: {
8578
- number1: {
8708
+ decimalDollar: {
8579
8709
  name: string;
8580
8710
  detail: string;
8581
8711
  };
8582
- number2: {
8712
+ fraction: {
8583
8713
  name: string;
8584
8714
  detail: string;
8585
8715
  };
@@ -8611,11 +8741,11 @@ declare const _default: {
8611
8741
  url: string;
8612
8742
  }[];
8613
8743
  functionParameter: {
8614
- number1: {
8744
+ nominalRate: {
8615
8745
  name: string;
8616
8746
  detail: string;
8617
8747
  };
8618
- number2: {
8748
+ npery: {
8619
8749
  name: string;
8620
8750
  detail: string;
8621
8751
  };
@@ -8629,11 +8759,23 @@ declare const _default: {
8629
8759
  url: string;
8630
8760
  }[];
8631
8761
  functionParameter: {
8632
- number1: {
8762
+ rate: {
8633
8763
  name: string;
8634
8764
  detail: string;
8635
8765
  };
8636
- 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: {
8637
8779
  name: string;
8638
8780
  detail: string;
8639
8781
  };
@@ -8647,11 +8789,11 @@ declare const _default: {
8647
8789
  url: string;
8648
8790
  }[];
8649
8791
  functionParameter: {
8650
- number1: {
8792
+ principal: {
8651
8793
  name: string;
8652
8794
  detail: string;
8653
8795
  };
8654
- number2: {
8796
+ schedule: {
8655
8797
  name: string;
8656
8798
  detail: string;
8657
8799
  };
@@ -8665,11 +8807,23 @@ declare const _default: {
8665
8807
  url: string;
8666
8808
  }[];
8667
8809
  functionParameter: {
8668
- number1: {
8810
+ settlement: {
8669
8811
  name: string;
8670
8812
  detail: string;
8671
8813
  };
8672
- 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: {
8673
8827
  name: string;
8674
8828
  detail: string;
8675
8829
  };
@@ -8683,11 +8837,27 @@ declare const _default: {
8683
8837
  url: string;
8684
8838
  }[];
8685
8839
  functionParameter: {
8686
- number1: {
8840
+ rate: {
8687
8841
  name: string;
8688
8842
  detail: string;
8689
8843
  };
8690
- 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: {
8691
8861
  name: string;
8692
8862
  detail: string;
8693
8863
  };
@@ -8719,11 +8889,19 @@ declare const _default: {
8719
8889
  url: string;
8720
8890
  }[];
8721
8891
  functionParameter: {
8722
- number1: {
8892
+ rate: {
8723
8893
  name: string;
8724
8894
  detail: string;
8725
8895
  };
8726
- number2: {
8896
+ per: {
8897
+ name: string;
8898
+ detail: string;
8899
+ };
8900
+ nper: {
8901
+ name: string;
8902
+ detail: string;
8903
+ };
8904
+ pv: {
8727
8905
  name: string;
8728
8906
  detail: string;
8729
8907
  };
@@ -8773,11 +8951,11 @@ declare const _default: {
8773
8951
  url: string;
8774
8952
  }[];
8775
8953
  functionParameter: {
8776
- number1: {
8954
+ effectRate: {
8777
8955
  name: string;
8778
8956
  detail: string;
8779
8957
  };
8780
- number2: {
8958
+ npery: {
8781
8959
  name: string;
8782
8960
  detail: string;
8783
8961
  };
@@ -8791,11 +8969,23 @@ declare const _default: {
8791
8969
  url: string;
8792
8970
  }[];
8793
8971
  functionParameter: {
8794
- number1: {
8972
+ rate: {
8795
8973
  name: string;
8796
8974
  detail: string;
8797
8975
  };
8798
- 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: {
8799
8989
  name: string;
8800
8990
  detail: string;
8801
8991
  };
@@ -8917,11 +9107,23 @@ declare const _default: {
8917
9107
  url: string;
8918
9108
  }[];
8919
9109
  functionParameter: {
8920
- number1: {
9110
+ rate: {
8921
9111
  name: string;
8922
9112
  detail: string;
8923
9113
  };
8924
- 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: {
8925
9127
  name: string;
8926
9128
  detail: string;
8927
9129
  };
@@ -8935,11 +9137,27 @@ declare const _default: {
8935
9137
  url: string;
8936
9138
  }[];
8937
9139
  functionParameter: {
8938
- number1: {
9140
+ rate: {
8939
9141
  name: string;
8940
9142
  detail: string;
8941
9143
  };
8942
- 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: {
8943
9161
  name: string;
8944
9162
  detail: string;
8945
9163
  };
@@ -9007,11 +9225,23 @@ declare const _default: {
9007
9225
  url: string;
9008
9226
  }[];
9009
9227
  functionParameter: {
9010
- number1: {
9228
+ rate: {
9011
9229
  name: string;
9012
9230
  detail: string;
9013
9231
  };
9014
- 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: {
9015
9245
  name: string;
9016
9246
  detail: string;
9017
9247
  };
@@ -9025,11 +9255,27 @@ declare const _default: {
9025
9255
  url: string;
9026
9256
  }[];
9027
9257
  functionParameter: {
9028
- number1: {
9258
+ nper: {
9029
9259
  name: string;
9030
9260
  detail: string;
9031
9261
  };
9032
- 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: {
9033
9279
  name: string;
9034
9280
  detail: string;
9035
9281
  };