@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
  };
@@ -1893,24 +1877,6 @@ declare const _default: {
1893
1877
  };
1894
1878
  };
1895
1879
  };
1896
- INFO: {
1897
- description: string;
1898
- abstract: string;
1899
- links: {
1900
- title: string;
1901
- url: string;
1902
- }[];
1903
- functionParameter: {
1904
- number1: {
1905
- name: string;
1906
- detail: string;
1907
- };
1908
- number2: {
1909
- name: string;
1910
- detail: string;
1911
- };
1912
- };
1913
- };
1914
1880
  ISBLANK: {
1915
1881
  description: string;
1916
1882
  abstract: string;
@@ -1967,24 +1933,6 @@ declare const _default: {
1967
1933
  };
1968
1934
  };
1969
1935
  };
1970
- ISFORMULA: {
1971
- description: string;
1972
- abstract: string;
1973
- links: {
1974
- title: string;
1975
- url: string;
1976
- }[];
1977
- functionParameter: {
1978
- number1: {
1979
- name: string;
1980
- detail: string;
1981
- };
1982
- number2: {
1983
- name: string;
1984
- detail: string;
1985
- };
1986
- };
1987
- };
1988
1936
  ISLOGICAL: {
1989
1937
  description: string;
1990
1938
  abstract: string;
@@ -2055,24 +2003,6 @@ declare const _default: {
2055
2003
  };
2056
2004
  };
2057
2005
  };
2058
- ISOMITTED: {
2059
- description: string;
2060
- abstract: string;
2061
- links: {
2062
- title: string;
2063
- url: string;
2064
- }[];
2065
- functionParameter: {
2066
- number1: {
2067
- name: string;
2068
- detail: string;
2069
- };
2070
- number2: {
2071
- name: string;
2072
- detail: string;
2073
- };
2074
- };
2075
- };
2076
2006
  ISREF: {
2077
2007
  description: string;
2078
2008
  abstract: string;
@@ -2101,78 +2031,6 @@ declare const _default: {
2101
2031
  };
2102
2032
  };
2103
2033
  };
2104
- N: {
2105
- description: string;
2106
- abstract: string;
2107
- links: {
2108
- title: string;
2109
- url: string;
2110
- }[];
2111
- functionParameter: {
2112
- number1: {
2113
- name: string;
2114
- detail: string;
2115
- };
2116
- number2: {
2117
- name: string;
2118
- detail: string;
2119
- };
2120
- };
2121
- };
2122
- NA: {
2123
- description: string;
2124
- abstract: string;
2125
- links: {
2126
- title: string;
2127
- url: string;
2128
- }[];
2129
- functionParameter: {
2130
- number1: {
2131
- name: string;
2132
- detail: string;
2133
- };
2134
- number2: {
2135
- name: string;
2136
- detail: string;
2137
- };
2138
- };
2139
- };
2140
- SHEET: {
2141
- description: string;
2142
- abstract: string;
2143
- links: {
2144
- title: string;
2145
- url: string;
2146
- }[];
2147
- functionParameter: {
2148
- number1: {
2149
- name: string;
2150
- detail: string;
2151
- };
2152
- number2: {
2153
- name: string;
2154
- detail: string;
2155
- };
2156
- };
2157
- };
2158
- SHEETS: {
2159
- description: string;
2160
- abstract: string;
2161
- links: {
2162
- title: string;
2163
- url: string;
2164
- }[];
2165
- functionParameter: {
2166
- number1: {
2167
- name: string;
2168
- detail: string;
2169
- };
2170
- number2: {
2171
- name: string;
2172
- detail: string;
2173
- };
2174
- };
2175
- };
2176
2034
  TYPE: {
2177
2035
  description: string;
2178
2036
  abstract: string;
@@ -2248,16 +2106,7 @@ declare const _default: {
2248
2106
  title: string;
2249
2107
  url: string;
2250
2108
  }[];
2251
- functionParameter: {
2252
- number1: {
2253
- name: string;
2254
- detail: string;
2255
- };
2256
- number2: {
2257
- name: string;
2258
- detail: string;
2259
- };
2260
- };
2109
+ functionParameter: {};
2261
2110
  };
2262
2111
  IF: {
2263
2112
  description: string;
@@ -2307,11 +2156,11 @@ declare const _default: {
2307
2156
  url: string;
2308
2157
  }[];
2309
2158
  functionParameter: {
2310
- number1: {
2159
+ value: {
2311
2160
  name: string;
2312
2161
  detail: string;
2313
2162
  };
2314
- number2: {
2163
+ valueIfNa: {
2315
2164
  name: string;
2316
2165
  detail: string;
2317
2166
  };
@@ -2325,11 +2174,19 @@ declare const _default: {
2325
2174
  url: string;
2326
2175
  }[];
2327
2176
  functionParameter: {
2328
- number1: {
2177
+ logicalTest1: {
2329
2178
  name: string;
2330
2179
  detail: string;
2331
2180
  };
2332
- number2: {
2181
+ valueIfTrue1: {
2182
+ name: string;
2183
+ detail: string;
2184
+ };
2185
+ logicalTest2: {
2186
+ name: string;
2187
+ detail: string;
2188
+ };
2189
+ valueIfTrue2: {
2333
2190
  name: string;
2334
2191
  detail: string;
2335
2192
  };
@@ -2361,11 +2218,23 @@ declare const _default: {
2361
2218
  url: string;
2362
2219
  }[];
2363
2220
  functionParameter: {
2364
- number1: {
2221
+ name1: {
2365
2222
  name: string;
2366
2223
  detail: string;
2367
2224
  };
2368
- number2: {
2225
+ nameValue1: {
2226
+ name: string;
2227
+ detail: string;
2228
+ };
2229
+ calculationOrName2: {
2230
+ name: string;
2231
+ detail: string;
2232
+ };
2233
+ nameValue2: {
2234
+ name: string;
2235
+ detail: string;
2236
+ };
2237
+ calculationOrName3: {
2369
2238
  name: string;
2370
2239
  detail: string;
2371
2240
  };
@@ -2419,11 +2288,7 @@ declare const _default: {
2419
2288
  url: string;
2420
2289
  }[];
2421
2290
  functionParameter: {
2422
- number1: {
2423
- name: string;
2424
- detail: string;
2425
- };
2426
- number2: {
2291
+ logical: {
2427
2292
  name: string;
2428
2293
  detail: string;
2429
2294
  };
@@ -2491,11 +2356,23 @@ declare const _default: {
2491
2356
  url: string;
2492
2357
  }[];
2493
2358
  functionParameter: {
2494
- number1: {
2359
+ expression: {
2495
2360
  name: string;
2496
2361
  detail: string;
2497
2362
  };
2498
- number2: {
2363
+ value1: {
2364
+ name: string;
2365
+ detail: string;
2366
+ };
2367
+ result1: {
2368
+ name: string;
2369
+ detail: string;
2370
+ };
2371
+ defaultOrValue2: {
2372
+ name: string;
2373
+ detail: string;
2374
+ };
2375
+ result2: {
2499
2376
  name: string;
2500
2377
  detail: string;
2501
2378
  };
@@ -2508,16 +2385,7 @@ declare const _default: {
2508
2385
  title: string;
2509
2386
  url: string;
2510
2387
  }[];
2511
- functionParameter: {
2512
- number1: {
2513
- name: string;
2514
- detail: string;
2515
- };
2516
- number2: {
2517
- name: string;
2518
- detail: string;
2519
- };
2520
- };
2388
+ functionParameter: {};
2521
2389
  };
2522
2390
  XOR: {
2523
2391
  description: string;
@@ -2527,11 +2395,11 @@ declare const _default: {
2527
2395
  url: string;
2528
2396
  }[];
2529
2397
  functionParameter: {
2530
- number1: {
2398
+ logical1: {
2531
2399
  name: string;
2532
2400
  detail: string;
2533
2401
  };
2534
- number2: {
2402
+ logical2: {
2535
2403
  name: string;
2536
2404
  detail: string;
2537
2405
  };
@@ -2811,6 +2679,20 @@ declare const _default: {
2811
2679
  };
2812
2680
  };
2813
2681
  };
2682
+ LENB: {
2683
+ description: string;
2684
+ abstract: string;
2685
+ links: {
2686
+ title: string;
2687
+ url: string;
2688
+ }[];
2689
+ functionParameter: {
2690
+ text: {
2691
+ name: string;
2692
+ detail: string;
2693
+ };
2694
+ };
2695
+ };
2814
2696
  LOWER: {
2815
2697
  description: string;
2816
2698
  abstract: string;
@@ -2975,7 +2857,7 @@ declare const _default: {
2975
2857
  name: string;
2976
2858
  detail: string;
2977
2859
  };
2978
- number_times: {
2860
+ numberTimes: {
2979
2861
  name: string;
2980
2862
  detail: string;
2981
2863
  };
@@ -3073,6 +2955,92 @@ declare const _default: {
3073
2955
  };
3074
2956
  };
3075
2957
  };
2958
+ TEXT: {
2959
+ description: string;
2960
+ abstract: string;
2961
+ links: {
2962
+ title: string;
2963
+ url: string;
2964
+ }[];
2965
+ functionParameter: {
2966
+ value: {
2967
+ name: string;
2968
+ detail: string;
2969
+ };
2970
+ formatText: {
2971
+ name: string;
2972
+ detail: string;
2973
+ };
2974
+ };
2975
+ };
2976
+ TEXTAFTER: {
2977
+ description: string;
2978
+ abstract: string;
2979
+ links: {
2980
+ title: string;
2981
+ url: string;
2982
+ }[];
2983
+ functionParameter: {
2984
+ text: {
2985
+ name: string;
2986
+ detail: string;
2987
+ };
2988
+ delimiter: {
2989
+ name: string;
2990
+ detail: string;
2991
+ };
2992
+ instanceNum: {
2993
+ name: string;
2994
+ detail: string;
2995
+ };
2996
+ matchMode: {
2997
+ name: string;
2998
+ detail: string;
2999
+ };
3000
+ matchEnd: {
3001
+ name: string;
3002
+ detail: string;
3003
+ };
3004
+ ifNotFound: {
3005
+ name: string;
3006
+ detail: string;
3007
+ };
3008
+ };
3009
+ };
3010
+ TEXTBEFORE: {
3011
+ description: string;
3012
+ abstract: string;
3013
+ links: {
3014
+ title: string;
3015
+ url: string;
3016
+ }[];
3017
+ functionParameter: {
3018
+ text: {
3019
+ name: string;
3020
+ detail: string;
3021
+ };
3022
+ delimiter: {
3023
+ name: string;
3024
+ detail: string;
3025
+ };
3026
+ instanceNum: {
3027
+ name: string;
3028
+ detail: string;
3029
+ };
3030
+ matchMode: {
3031
+ name: string;
3032
+ detail: string;
3033
+ };
3034
+ matchEnd: {
3035
+ name: string;
3036
+ detail: string;
3037
+ };
3038
+ ifNotFound: {
3039
+ name: string;
3040
+ detail: string;
3041
+ };
3042
+ };
3043
+ };
3076
3044
  TEXTJOIN: {
3077
3045
  description: string;
3078
3046
  abstract: string;
@@ -3099,6 +3067,40 @@ declare const _default: {
3099
3067
  };
3100
3068
  };
3101
3069
  };
3070
+ TEXTSPLIT: {
3071
+ description: string;
3072
+ abstract: string;
3073
+ links: {
3074
+ title: string;
3075
+ url: string;
3076
+ }[];
3077
+ functionParameter: {
3078
+ text: {
3079
+ name: string;
3080
+ detail: string;
3081
+ };
3082
+ colDelimiter: {
3083
+ name: string;
3084
+ detail: string;
3085
+ };
3086
+ rowDelimiter: {
3087
+ name: string;
3088
+ detail: string;
3089
+ };
3090
+ ignoreEmpty: {
3091
+ name: string;
3092
+ detail: string;
3093
+ };
3094
+ matchMode: {
3095
+ name: string;
3096
+ detail: string;
3097
+ };
3098
+ padWith: {
3099
+ name: string;
3100
+ detail: string;
3101
+ };
3102
+ };
3103
+ };
3102
3104
  TRIM: {
3103
3105
  description: string;
3104
3106
  abstract: string;
@@ -3423,11 +3425,7 @@ declare const _default: {
3423
3425
  url: string;
3424
3426
  }[];
3425
3427
  functionParameter: {
3426
- number1: {
3427
- name: string;
3428
- detail: string;
3429
- };
3430
- number2: {
3428
+ reference: {
3431
3429
  name: string;
3432
3430
  detail: string;
3433
3431
  };
@@ -3463,11 +3461,15 @@ declare const _default: {
3463
3461
  url: string;
3464
3462
  }[];
3465
3463
  functionParameter: {
3466
- number1: {
3464
+ array: {
3467
3465
  name: string;
3468
3466
  detail: string;
3469
3467
  };
3470
- number2: {
3468
+ colNum1: {
3469
+ name: string;
3470
+ detail: string;
3471
+ };
3472
+ colNum2: {
3471
3473
  name: string;
3472
3474
  detail: string;
3473
3475
  };
@@ -3481,11 +3483,15 @@ declare const _default: {
3481
3483
  url: string;
3482
3484
  }[];
3483
3485
  functionParameter: {
3484
- number1: {
3486
+ array: {
3485
3487
  name: string;
3486
3488
  detail: string;
3487
3489
  };
3488
- number2: {
3490
+ rowNum1: {
3491
+ name: string;
3492
+ detail: string;
3493
+ };
3494
+ rowNum2: {
3489
3495
  name: string;
3490
3496
  detail: string;
3491
3497
  };
@@ -3555,7 +3561,7 @@ declare const _default: {
3555
3561
  };
3556
3562
  };
3557
3563
  };
3558
- AVEDEV: {
3564
+ FILTER: {
3559
3565
  description: string;
3560
3566
  abstract: string;
3561
3567
  links: {
@@ -3563,17 +3569,21 @@ declare const _default: {
3563
3569
  url: string;
3564
3570
  }[];
3565
3571
  functionParameter: {
3566
- number1: {
3572
+ array: {
3567
3573
  name: string;
3568
3574
  detail: string;
3569
3575
  };
3570
- number2: {
3576
+ include: {
3577
+ name: string;
3578
+ detail: string;
3579
+ };
3580
+ ifEmpty: {
3571
3581
  name: string;
3572
3582
  detail: string;
3573
3583
  };
3574
3584
  };
3575
3585
  };
3576
- AVERAGE: {
3586
+ HLOOKUP: {
3577
3587
  description: string;
3578
3588
  abstract: string;
3579
3589
  links: {
@@ -3581,35 +3591,25 @@ declare const _default: {
3581
3591
  url: string;
3582
3592
  }[];
3583
3593
  functionParameter: {
3584
- number1: {
3594
+ lookupValue: {
3585
3595
  name: string;
3586
3596
  detail: string;
3587
3597
  };
3588
- number2: {
3598
+ tableArray: {
3589
3599
  name: string;
3590
3600
  detail: string;
3591
3601
  };
3592
- };
3593
- };
3594
- AVERAGEA: {
3595
- description: string;
3596
- abstract: string;
3597
- links: {
3598
- title: string;
3599
- url: string;
3600
- }[];
3601
- functionParameter: {
3602
- value1: {
3602
+ rowIndexNum: {
3603
3603
  name: string;
3604
3604
  detail: string;
3605
3605
  };
3606
- value2: {
3606
+ rangeLookup: {
3607
3607
  name: string;
3608
3608
  detail: string;
3609
3609
  };
3610
3610
  };
3611
3611
  };
3612
- AVERAGEIF: {
3612
+ HSTACK: {
3613
3613
  description: string;
3614
3614
  abstract: string;
3615
3615
  links: {
@@ -3617,21 +3617,17 @@ declare const _default: {
3617
3617
  url: string;
3618
3618
  }[];
3619
3619
  functionParameter: {
3620
- range: {
3621
- name: string;
3622
- detail: string;
3623
- };
3624
- criteria: {
3620
+ array1: {
3625
3621
  name: string;
3626
3622
  detail: string;
3627
3623
  };
3628
- averageRange: {
3624
+ array2: {
3629
3625
  name: string;
3630
3626
  detail: string;
3631
3627
  };
3632
3628
  };
3633
3629
  };
3634
- AVERAGEIFS: {
3630
+ INDEX: {
3635
3631
  description: string;
3636
3632
  abstract: string;
3637
3633
  links: {
@@ -3639,29 +3635,25 @@ declare const _default: {
3639
3635
  url: string;
3640
3636
  }[];
3641
3637
  functionParameter: {
3642
- averageRange: {
3643
- name: string;
3644
- detail: string;
3645
- };
3646
- criteriaRange1: {
3638
+ reference: {
3647
3639
  name: string;
3648
3640
  detail: string;
3649
3641
  };
3650
- criteria1: {
3642
+ rowNum: {
3651
3643
  name: string;
3652
3644
  detail: string;
3653
3645
  };
3654
- criteriaRange2: {
3646
+ columnNum: {
3655
3647
  name: string;
3656
3648
  detail: string;
3657
3649
  };
3658
- criteria2: {
3650
+ areaNum: {
3659
3651
  name: string;
3660
3652
  detail: string;
3661
3653
  };
3662
3654
  };
3663
3655
  };
3664
- BETA_DIST: {
3656
+ INDIRECT: {
3665
3657
  description: string;
3666
3658
  abstract: string;
3667
3659
  links: {
@@ -3669,17 +3661,17 @@ declare const _default: {
3669
3661
  url: string;
3670
3662
  }[];
3671
3663
  functionParameter: {
3672
- number1: {
3664
+ refText: {
3673
3665
  name: string;
3674
3666
  detail: string;
3675
3667
  };
3676
- number2: {
3668
+ a1: {
3677
3669
  name: string;
3678
3670
  detail: string;
3679
3671
  };
3680
3672
  };
3681
3673
  };
3682
- BETA_INV: {
3674
+ LOOKUP: {
3683
3675
  description: string;
3684
3676
  abstract: string;
3685
3677
  links: {
@@ -3687,17 +3679,21 @@ declare const _default: {
3687
3679
  url: string;
3688
3680
  }[];
3689
3681
  functionParameter: {
3690
- number1: {
3682
+ lookupValue: {
3691
3683
  name: string;
3692
3684
  detail: string;
3693
3685
  };
3694
- number2: {
3686
+ lookupVectorOrArray: {
3687
+ name: string;
3688
+ detail: string;
3689
+ };
3690
+ resultVector: {
3695
3691
  name: string;
3696
3692
  detail: string;
3697
3693
  };
3698
3694
  };
3699
3695
  };
3700
- BINOM_DIST: {
3696
+ MATCH: {
3701
3697
  description: string;
3702
3698
  abstract: string;
3703
3699
  links: {
@@ -3705,17 +3701,21 @@ declare const _default: {
3705
3701
  url: string;
3706
3702
  }[];
3707
3703
  functionParameter: {
3708
- number1: {
3704
+ lookupValue: {
3709
3705
  name: string;
3710
3706
  detail: string;
3711
3707
  };
3712
- number2: {
3708
+ lookupArray: {
3709
+ name: string;
3710
+ detail: string;
3711
+ };
3712
+ matchType: {
3713
3713
  name: string;
3714
3714
  detail: string;
3715
3715
  };
3716
3716
  };
3717
3717
  };
3718
- BINOM_DIST_RANGE: {
3718
+ OFFSET: {
3719
3719
  description: string;
3720
3720
  abstract: string;
3721
3721
  links: {
@@ -3723,35 +3723,29 @@ declare const _default: {
3723
3723
  url: string;
3724
3724
  }[];
3725
3725
  functionParameter: {
3726
- number1: {
3726
+ reference: {
3727
3727
  name: string;
3728
3728
  detail: string;
3729
3729
  };
3730
- number2: {
3730
+ rows: {
3731
3731
  name: string;
3732
3732
  detail: string;
3733
3733
  };
3734
- };
3735
- };
3736
- BINOM_INV: {
3737
- description: string;
3738
- abstract: string;
3739
- links: {
3740
- title: string;
3741
- url: string;
3742
- }[];
3743
- functionParameter: {
3744
- number1: {
3734
+ cols: {
3745
3735
  name: string;
3746
3736
  detail: string;
3747
3737
  };
3748
- number2: {
3738
+ height: {
3739
+ name: string;
3740
+ detail: string;
3741
+ };
3742
+ width: {
3749
3743
  name: string;
3750
3744
  detail: string;
3751
3745
  };
3752
3746
  };
3753
3747
  };
3754
- CHISQ_DIST: {
3748
+ ROW: {
3755
3749
  description: string;
3756
3750
  abstract: string;
3757
3751
  links: {
@@ -3759,17 +3753,13 @@ declare const _default: {
3759
3753
  url: string;
3760
3754
  }[];
3761
3755
  functionParameter: {
3762
- number1: {
3763
- name: string;
3764
- detail: string;
3765
- };
3766
- number2: {
3756
+ reference: {
3767
3757
  name: string;
3768
3758
  detail: string;
3769
3759
  };
3770
3760
  };
3771
3761
  };
3772
- CHISQ_DIST_RT: {
3762
+ ROWS: {
3773
3763
  description: string;
3774
3764
  abstract: string;
3775
3765
  links: {
@@ -3777,17 +3767,13 @@ declare const _default: {
3777
3767
  url: string;
3778
3768
  }[];
3779
3769
  functionParameter: {
3780
- number1: {
3781
- name: string;
3782
- detail: string;
3783
- };
3784
- number2: {
3770
+ array: {
3785
3771
  name: string;
3786
3772
  detail: string;
3787
3773
  };
3788
3774
  };
3789
3775
  };
3790
- CHISQ_INV: {
3776
+ SORT: {
3791
3777
  description: string;
3792
3778
  abstract: string;
3793
3779
  links: {
@@ -3795,35 +3781,195 @@ declare const _default: {
3795
3781
  url: string;
3796
3782
  }[];
3797
3783
  functionParameter: {
3798
- number1: {
3784
+ array: {
3799
3785
  name: string;
3800
3786
  detail: string;
3801
3787
  };
3802
- number2: {
3788
+ sortIndex: {
3803
3789
  name: string;
3804
3790
  detail: string;
3805
3791
  };
3806
- };
3807
- };
3808
- CHISQ_INV_RT: {
3809
- description: string;
3810
- abstract: string;
3811
- links: {
3812
- title: string;
3813
- url: string;
3814
- }[];
3815
- functionParameter: {
3816
- number1: {
3792
+ sortOrder: {
3817
3793
  name: string;
3818
3794
  detail: string;
3819
3795
  };
3820
- number2: {
3796
+ byCol: {
3821
3797
  name: string;
3822
3798
  detail: string;
3823
3799
  };
3824
3800
  };
3825
3801
  };
3826
- CHISQ_TEST: {
3802
+ SORTBY: {
3803
+ description: string;
3804
+ abstract: string;
3805
+ links: {
3806
+ title: string;
3807
+ url: string;
3808
+ }[];
3809
+ functionParameter: {
3810
+ array: {
3811
+ name: string;
3812
+ detail: string;
3813
+ };
3814
+ byArray1: {
3815
+ name: string;
3816
+ detail: string;
3817
+ };
3818
+ sortOrder1: {
3819
+ name: string;
3820
+ detail: string;
3821
+ };
3822
+ byArray2: {
3823
+ name: string;
3824
+ detail: string;
3825
+ };
3826
+ sortOrder2: {
3827
+ name: string;
3828
+ detail: string;
3829
+ };
3830
+ };
3831
+ };
3832
+ TRANSPOSE: {
3833
+ description: string;
3834
+ abstract: string;
3835
+ links: {
3836
+ title: string;
3837
+ url: string;
3838
+ }[];
3839
+ functionParameter: {
3840
+ array: {
3841
+ name: string;
3842
+ detail: string;
3843
+ };
3844
+ };
3845
+ };
3846
+ UNIQUE: {
3847
+ description: string;
3848
+ abstract: string;
3849
+ links: {
3850
+ title: string;
3851
+ url: string;
3852
+ }[];
3853
+ functionParameter: {
3854
+ array: {
3855
+ name: string;
3856
+ detail: string;
3857
+ };
3858
+ byCol: {
3859
+ name: string;
3860
+ detail: string;
3861
+ };
3862
+ exactlyOnce: {
3863
+ name: string;
3864
+ detail: string;
3865
+ };
3866
+ };
3867
+ };
3868
+ VLOOKUP: {
3869
+ description: string;
3870
+ abstract: string;
3871
+ links: {
3872
+ title: string;
3873
+ url: string;
3874
+ }[];
3875
+ functionParameter: {
3876
+ lookupValue: {
3877
+ name: string;
3878
+ detail: string;
3879
+ };
3880
+ tableArray: {
3881
+ name: string;
3882
+ detail: string;
3883
+ };
3884
+ colIndexNum: {
3885
+ name: string;
3886
+ detail: string;
3887
+ };
3888
+ rangeLookup: {
3889
+ name: string;
3890
+ detail: string;
3891
+ };
3892
+ };
3893
+ };
3894
+ VSTACK: {
3895
+ description: string;
3896
+ abstract: string;
3897
+ links: {
3898
+ title: string;
3899
+ url: string;
3900
+ }[];
3901
+ functionParameter: {
3902
+ array1: {
3903
+ name: string;
3904
+ detail: string;
3905
+ };
3906
+ array2: {
3907
+ name: string;
3908
+ detail: string;
3909
+ };
3910
+ };
3911
+ };
3912
+ XLOOKUP: {
3913
+ description: string;
3914
+ abstract: string;
3915
+ links: {
3916
+ title: string;
3917
+ url: string;
3918
+ }[];
3919
+ functionParameter: {
3920
+ lookupValue: {
3921
+ name: string;
3922
+ detail: string;
3923
+ };
3924
+ lookupArray: {
3925
+ name: string;
3926
+ detail: string;
3927
+ };
3928
+ returnArray: {
3929
+ name: string;
3930
+ detail: string;
3931
+ };
3932
+ ifNotFound: {
3933
+ name: string;
3934
+ detail: string;
3935
+ };
3936
+ matchMode: {
3937
+ name: string;
3938
+ detail: string;
3939
+ };
3940
+ searchMode: {
3941
+ name: string;
3942
+ detail: string;
3943
+ };
3944
+ };
3945
+ };
3946
+ XMATCH: {
3947
+ description: string;
3948
+ abstract: string;
3949
+ links: {
3950
+ title: string;
3951
+ url: string;
3952
+ }[];
3953
+ functionParameter: {
3954
+ lookupValue: {
3955
+ name: string;
3956
+ detail: string;
3957
+ };
3958
+ lookupArray: {
3959
+ name: string;
3960
+ detail: string;
3961
+ };
3962
+ matchMode: {
3963
+ name: string;
3964
+ detail: string;
3965
+ };
3966
+ searchMode: {
3967
+ name: string;
3968
+ detail: string;
3969
+ };
3970
+ };
3971
+ };
3972
+ AVEDEV: {
3827
3973
  description: string;
3828
3974
  abstract: string;
3829
3975
  links: {
@@ -3841,7 +3987,7 @@ declare const _default: {
3841
3987
  };
3842
3988
  };
3843
3989
  };
3844
- CONFIDENCE_NORM: {
3990
+ AVERAGE: {
3845
3991
  description: string;
3846
3992
  abstract: string;
3847
3993
  links: {
@@ -3859,7 +4005,77 @@ declare const _default: {
3859
4005
  };
3860
4006
  };
3861
4007
  };
3862
- CONFIDENCE_T: {
4008
+ AVERAGEA: {
4009
+ description: string;
4010
+ abstract: string;
4011
+ links: {
4012
+ title: string;
4013
+ url: string;
4014
+ }[];
4015
+ functionParameter: {
4016
+ value1: {
4017
+ name: string;
4018
+ detail: string;
4019
+ };
4020
+ value2: {
4021
+ name: string;
4022
+ detail: string;
4023
+ };
4024
+ };
4025
+ };
4026
+ AVERAGEIF: {
4027
+ description: string;
4028
+ abstract: string;
4029
+ links: {
4030
+ title: string;
4031
+ url: string;
4032
+ }[];
4033
+ functionParameter: {
4034
+ range: {
4035
+ name: string;
4036
+ detail: string;
4037
+ };
4038
+ criteria: {
4039
+ name: string;
4040
+ detail: string;
4041
+ };
4042
+ averageRange: {
4043
+ name: string;
4044
+ detail: string;
4045
+ };
4046
+ };
4047
+ };
4048
+ AVERAGEIFS: {
4049
+ description: string;
4050
+ abstract: string;
4051
+ links: {
4052
+ title: string;
4053
+ url: string;
4054
+ }[];
4055
+ functionParameter: {
4056
+ averageRange: {
4057
+ name: string;
4058
+ detail: string;
4059
+ };
4060
+ criteriaRange1: {
4061
+ name: string;
4062
+ detail: string;
4063
+ };
4064
+ criteria1: {
4065
+ name: string;
4066
+ detail: string;
4067
+ };
4068
+ criteriaRange2: {
4069
+ name: string;
4070
+ detail: string;
4071
+ };
4072
+ criteria2: {
4073
+ name: string;
4074
+ detail: string;
4075
+ };
4076
+ };
4077
+ };
4078
+ BETA_DIST: {
3863
4079
  description: string;
3864
4080
  abstract: string;
3865
4081
  links: {
@@ -3877,7 +4093,7 @@ declare const _default: {
3877
4093
  };
3878
4094
  };
3879
4095
  };
3880
- CORREL: {
4096
+ BETA_INV: {
3881
4097
  description: string;
3882
4098
  abstract: string;
3883
4099
  links: {
@@ -3895,7 +4111,7 @@ declare const _default: {
3895
4111
  };
3896
4112
  };
3897
4113
  };
3898
- COUNT: {
4114
+ BINOM_DIST: {
3899
4115
  description: string;
3900
4116
  abstract: string;
3901
4117
  links: {
@@ -3903,17 +4119,17 @@ declare const _default: {
3903
4119
  url: string;
3904
4120
  }[];
3905
4121
  functionParameter: {
3906
- value1: {
4122
+ number1: {
3907
4123
  name: string;
3908
4124
  detail: string;
3909
4125
  };
3910
- value2: {
4126
+ number2: {
3911
4127
  name: string;
3912
4128
  detail: string;
3913
4129
  };
3914
4130
  };
3915
4131
  };
3916
- COUNTA: {
4132
+ BINOM_DIST_RANGE: {
3917
4133
  description: string;
3918
4134
  abstract: string;
3919
4135
  links: {
@@ -3931,7 +4147,7 @@ declare const _default: {
3931
4147
  };
3932
4148
  };
3933
4149
  };
3934
- ABS: {
4150
+ BINOM_INV: {
3935
4151
  description: string;
3936
4152
  abstract: string;
3937
4153
  links: {
@@ -3939,13 +4155,17 @@ declare const _default: {
3939
4155
  url: string;
3940
4156
  }[];
3941
4157
  functionParameter: {
3942
- number: {
4158
+ number1: {
4159
+ name: string;
4160
+ detail: string;
4161
+ };
4162
+ number2: {
3943
4163
  name: string;
3944
4164
  detail: string;
3945
4165
  };
3946
4166
  };
3947
4167
  };
3948
- ACOS: {
4168
+ CHISQ_DIST: {
3949
4169
  description: string;
3950
4170
  abstract: string;
3951
4171
  links: {
@@ -3953,13 +4173,17 @@ declare const _default: {
3953
4173
  url: string;
3954
4174
  }[];
3955
4175
  functionParameter: {
3956
- number: {
4176
+ number1: {
4177
+ name: string;
4178
+ detail: string;
4179
+ };
4180
+ number2: {
3957
4181
  name: string;
3958
4182
  detail: string;
3959
4183
  };
3960
4184
  };
3961
4185
  };
3962
- ACOSH: {
4186
+ CHISQ_DIST_RT: {
3963
4187
  description: string;
3964
4188
  abstract: string;
3965
4189
  links: {
@@ -3967,13 +4191,17 @@ declare const _default: {
3967
4191
  url: string;
3968
4192
  }[];
3969
4193
  functionParameter: {
3970
- number: {
4194
+ number1: {
4195
+ name: string;
4196
+ detail: string;
4197
+ };
4198
+ number2: {
3971
4199
  name: string;
3972
4200
  detail: string;
3973
4201
  };
3974
4202
  };
3975
4203
  };
3976
- ACOT: {
4204
+ CHISQ_INV: {
3977
4205
  description: string;
3978
4206
  abstract: string;
3979
4207
  links: {
@@ -3981,13 +4209,175 @@ declare const _default: {
3981
4209
  url: string;
3982
4210
  }[];
3983
4211
  functionParameter: {
3984
- number: {
4212
+ number1: {
4213
+ name: string;
4214
+ detail: string;
4215
+ };
4216
+ number2: {
4217
+ name: string;
4218
+ detail: string;
4219
+ };
4220
+ };
4221
+ };
4222
+ CHISQ_INV_RT: {
4223
+ description: string;
4224
+ abstract: string;
4225
+ links: {
4226
+ title: string;
4227
+ url: string;
4228
+ }[];
4229
+ functionParameter: {
4230
+ number1: {
4231
+ name: string;
4232
+ detail: string;
4233
+ };
4234
+ number2: {
4235
+ name: string;
4236
+ detail: string;
4237
+ };
4238
+ };
4239
+ };
4240
+ CHISQ_TEST: {
4241
+ description: string;
4242
+ abstract: string;
4243
+ links: {
4244
+ title: string;
4245
+ url: string;
4246
+ }[];
4247
+ functionParameter: {
4248
+ number1: {
4249
+ name: string;
4250
+ detail: string;
4251
+ };
4252
+ number2: {
4253
+ name: string;
4254
+ detail: string;
4255
+ };
4256
+ };
4257
+ };
4258
+ CONFIDENCE_NORM: {
4259
+ description: string;
4260
+ abstract: string;
4261
+ links: {
4262
+ title: string;
4263
+ url: string;
4264
+ }[];
4265
+ functionParameter: {
4266
+ number1: {
4267
+ name: string;
4268
+ detail: string;
4269
+ };
4270
+ number2: {
4271
+ name: string;
4272
+ detail: string;
4273
+ };
4274
+ };
4275
+ };
4276
+ CONFIDENCE_T: {
4277
+ description: string;
4278
+ abstract: string;
4279
+ links: {
4280
+ title: string;
4281
+ url: string;
4282
+ }[];
4283
+ functionParameter: {
4284
+ number1: {
4285
+ name: string;
4286
+ detail: string;
4287
+ };
4288
+ number2: {
4289
+ name: string;
4290
+ detail: string;
4291
+ };
4292
+ };
4293
+ };
4294
+ CORREL: {
4295
+ description: string;
4296
+ abstract: string;
4297
+ links: {
4298
+ title: string;
4299
+ url: string;
4300
+ }[];
4301
+ functionParameter: {
4302
+ number1: {
4303
+ name: string;
4304
+ detail: string;
4305
+ };
4306
+ number2: {
4307
+ name: string;
4308
+ detail: string;
4309
+ };
4310
+ };
4311
+ };
4312
+ COUNT: {
4313
+ description: string;
4314
+ abstract: string;
4315
+ links: {
4316
+ title: string;
4317
+ url: string;
4318
+ }[];
4319
+ functionParameter: {
4320
+ value1: {
4321
+ name: string;
4322
+ detail: string;
4323
+ };
4324
+ value2: {
4325
+ name: string;
4326
+ detail: string;
4327
+ };
4328
+ };
4329
+ };
4330
+ COUNTA: {
4331
+ description: string;
4332
+ abstract: string;
4333
+ links: {
4334
+ title: string;
4335
+ url: string;
4336
+ }[];
4337
+ functionParameter: {
4338
+ number1: {
4339
+ name: string;
4340
+ detail: string;
4341
+ };
4342
+ number2: {
4343
+ name: string;
4344
+ detail: string;
4345
+ };
4346
+ };
4347
+ };
4348
+ COUNTBLANK: {
4349
+ description: string;
4350
+ abstract: string;
4351
+ links: {
4352
+ title: string;
4353
+ url: string;
4354
+ }[];
4355
+ functionParameter: {
4356
+ range: {
4357
+ name: string;
4358
+ detail: string;
4359
+ };
4360
+ };
4361
+ };
4362
+ COUNTIF: {
4363
+ description: string;
4364
+ abstract: string;
4365
+ links: {
4366
+ title: string;
4367
+ url: string;
4368
+ }[];
4369
+ functionParameter: {
4370
+ range: {
4371
+ name: string;
4372
+ detail: string;
4373
+ };
4374
+ criteria: {
3985
4375
  name: string;
3986
4376
  detail: string;
3987
4377
  };
3988
4378
  };
3989
4379
  };
3990
- ACOTH: {
4380
+ COUNTIFS: {
3991
4381
  description: string;
3992
4382
  abstract: string;
3993
4383
  links: {
@@ -3995,13 +4385,25 @@ declare const _default: {
3995
4385
  url: string;
3996
4386
  }[];
3997
4387
  functionParameter: {
3998
- number: {
4388
+ criteriaRange1: {
4389
+ name: string;
4390
+ detail: string;
4391
+ };
4392
+ criteria1: {
4393
+ name: string;
4394
+ detail: string;
4395
+ };
4396
+ criteriaRange2: {
4397
+ name: string;
4398
+ detail: string;
4399
+ };
4400
+ criteria2: {
3999
4401
  name: string;
4000
4402
  detail: string;
4001
4403
  };
4002
4404
  };
4003
4405
  };
4004
- AGGREGATE: {
4406
+ MAX: {
4005
4407
  description: string;
4006
4408
  abstract: string;
4007
4409
  links: {
@@ -4019,7 +4421,7 @@ declare const _default: {
4019
4421
  };
4020
4422
  };
4021
4423
  };
4022
- ARABIC: {
4424
+ MAXA: {
4023
4425
  description: string;
4024
4426
  abstract: string;
4025
4427
  links: {
@@ -4027,17 +4429,17 @@ declare const _default: {
4027
4429
  url: string;
4028
4430
  }[];
4029
4431
  functionParameter: {
4030
- number1: {
4432
+ value1: {
4031
4433
  name: string;
4032
4434
  detail: string;
4033
4435
  };
4034
- number2: {
4436
+ value2: {
4035
4437
  name: string;
4036
4438
  detail: string;
4037
4439
  };
4038
4440
  };
4039
4441
  };
4040
- ASIN: {
4442
+ MAXIFS: {
4041
4443
  description: string;
4042
4444
  abstract: string;
4043
4445
  links: {
@@ -4045,13 +4447,29 @@ declare const _default: {
4045
4447
  url: string;
4046
4448
  }[];
4047
4449
  functionParameter: {
4048
- number: {
4450
+ maxRange: {
4451
+ name: string;
4452
+ detail: string;
4453
+ };
4454
+ criteriaRange1: {
4455
+ name: string;
4456
+ detail: string;
4457
+ };
4458
+ criteria1: {
4459
+ name: string;
4460
+ detail: string;
4461
+ };
4462
+ criteriaRange2: {
4463
+ name: string;
4464
+ detail: string;
4465
+ };
4466
+ criteria2: {
4049
4467
  name: string;
4050
4468
  detail: string;
4051
4469
  };
4052
4470
  };
4053
4471
  };
4054
- ASINH: {
4472
+ MIN: {
4055
4473
  description: string;
4056
4474
  abstract: string;
4057
4475
  links: {
@@ -4059,13 +4477,17 @@ declare const _default: {
4059
4477
  url: string;
4060
4478
  }[];
4061
4479
  functionParameter: {
4062
- number: {
4480
+ number1: {
4481
+ name: string;
4482
+ detail: string;
4483
+ };
4484
+ number2: {
4063
4485
  name: string;
4064
4486
  detail: string;
4065
4487
  };
4066
4488
  };
4067
4489
  };
4068
- ATAN: {
4490
+ MINA: {
4069
4491
  description: string;
4070
4492
  abstract: string;
4071
4493
  links: {
@@ -4073,13 +4495,17 @@ declare const _default: {
4073
4495
  url: string;
4074
4496
  }[];
4075
4497
  functionParameter: {
4076
- number: {
4498
+ value1: {
4499
+ name: string;
4500
+ detail: string;
4501
+ };
4502
+ value2: {
4077
4503
  name: string;
4078
4504
  detail: string;
4079
4505
  };
4080
4506
  };
4081
4507
  };
4082
- ATAN2: {
4508
+ MINIFS: {
4083
4509
  description: string;
4084
4510
  abstract: string;
4085
4511
  links: {
@@ -4087,17 +4513,29 @@ declare const _default: {
4087
4513
  url: string;
4088
4514
  }[];
4089
4515
  functionParameter: {
4090
- xNum: {
4516
+ minRange: {
4091
4517
  name: string;
4092
4518
  detail: string;
4093
4519
  };
4094
- yNum: {
4520
+ criteriaRange1: {
4521
+ name: string;
4522
+ detail: string;
4523
+ };
4524
+ criteria1: {
4525
+ name: string;
4526
+ detail: string;
4527
+ };
4528
+ criteriaRange2: {
4529
+ name: string;
4530
+ detail: string;
4531
+ };
4532
+ criteria2: {
4095
4533
  name: string;
4096
4534
  detail: string;
4097
4535
  };
4098
4536
  };
4099
4537
  };
4100
- ATANH: {
4538
+ STDEV_P: {
4101
4539
  description: string;
4102
4540
  abstract: string;
4103
4541
  links: {
@@ -4105,13 +4543,17 @@ declare const _default: {
4105
4543
  url: string;
4106
4544
  }[];
4107
4545
  functionParameter: {
4108
- number: {
4546
+ number1: {
4547
+ name: string;
4548
+ detail: string;
4549
+ };
4550
+ number2: {
4109
4551
  name: string;
4110
4552
  detail: string;
4111
4553
  };
4112
4554
  };
4113
4555
  };
4114
- BASE: {
4556
+ STDEV_S: {
4115
4557
  description: string;
4116
4558
  abstract: string;
4117
4559
  links: {
@@ -4119,21 +4561,17 @@ declare const _default: {
4119
4561
  url: string;
4120
4562
  }[];
4121
4563
  functionParameter: {
4122
- number: {
4123
- name: string;
4124
- detail: string;
4125
- };
4126
- radix: {
4564
+ number1: {
4127
4565
  name: string;
4128
4566
  detail: string;
4129
4567
  };
4130
- minLength: {
4568
+ number2: {
4131
4569
  name: string;
4132
4570
  detail: string;
4133
4571
  };
4134
4572
  };
4135
4573
  };
4136
- CEILING: {
4574
+ STDEVA: {
4137
4575
  description: string;
4138
4576
  abstract: string;
4139
4577
  links: {
@@ -4141,17 +4579,17 @@ declare const _default: {
4141
4579
  url: string;
4142
4580
  }[];
4143
4581
  functionParameter: {
4144
- number: {
4582
+ value1: {
4145
4583
  name: string;
4146
4584
  detail: string;
4147
4585
  };
4148
- significance: {
4586
+ value2: {
4149
4587
  name: string;
4150
4588
  detail: string;
4151
4589
  };
4152
4590
  };
4153
4591
  };
4154
- CEILING_MATH: {
4592
+ STDEVPA: {
4155
4593
  description: string;
4156
4594
  abstract: string;
4157
4595
  links: {
@@ -4159,21 +4597,17 @@ declare const _default: {
4159
4597
  url: string;
4160
4598
  }[];
4161
4599
  functionParameter: {
4162
- number: {
4163
- name: string;
4164
- detail: string;
4165
- };
4166
- significance: {
4600
+ value1: {
4167
4601
  name: string;
4168
4602
  detail: string;
4169
4603
  };
4170
- mode: {
4604
+ value2: {
4171
4605
  name: string;
4172
4606
  detail: string;
4173
4607
  };
4174
4608
  };
4175
4609
  };
4176
- CEILING_PRECISE: {
4610
+ VAR_P: {
4177
4611
  description: string;
4178
4612
  abstract: string;
4179
4613
  links: {
@@ -4181,17 +4615,17 @@ declare const _default: {
4181
4615
  url: string;
4182
4616
  }[];
4183
4617
  functionParameter: {
4184
- number: {
4618
+ number1: {
4185
4619
  name: string;
4186
4620
  detail: string;
4187
4621
  };
4188
- significance: {
4622
+ number2: {
4189
4623
  name: string;
4190
4624
  detail: string;
4191
4625
  };
4192
4626
  };
4193
4627
  };
4194
- COMBIN: {
4628
+ VAR_S: {
4195
4629
  description: string;
4196
4630
  abstract: string;
4197
4631
  links: {
@@ -4209,7 +4643,7 @@ declare const _default: {
4209
4643
  };
4210
4644
  };
4211
4645
  };
4212
- COMBINA: {
4646
+ VARA: {
4213
4647
  description: string;
4214
4648
  abstract: string;
4215
4649
  links: {
@@ -4217,17 +4651,17 @@ declare const _default: {
4217
4651
  url: string;
4218
4652
  }[];
4219
4653
  functionParameter: {
4220
- number1: {
4654
+ value1: {
4221
4655
  name: string;
4222
4656
  detail: string;
4223
4657
  };
4224
- number2: {
4658
+ value2: {
4225
4659
  name: string;
4226
4660
  detail: string;
4227
4661
  };
4228
4662
  };
4229
4663
  };
4230
- COS: {
4664
+ VARPA: {
4231
4665
  description: string;
4232
4666
  abstract: string;
4233
4667
  links: {
@@ -4235,13 +4669,17 @@ declare const _default: {
4235
4669
  url: string;
4236
4670
  }[];
4237
4671
  functionParameter: {
4238
- number: {
4672
+ value1: {
4673
+ name: string;
4674
+ detail: string;
4675
+ };
4676
+ value2: {
4239
4677
  name: string;
4240
4678
  detail: string;
4241
4679
  };
4242
4680
  };
4243
4681
  };
4244
- COSH: {
4682
+ ABS: {
4245
4683
  description: string;
4246
4684
  abstract: string;
4247
4685
  links: {
@@ -4255,7 +4693,7 @@ declare const _default: {
4255
4693
  };
4256
4694
  };
4257
4695
  };
4258
- COT: {
4696
+ ACOS: {
4259
4697
  description: string;
4260
4698
  abstract: string;
4261
4699
  links: {
@@ -4269,7 +4707,7 @@ declare const _default: {
4269
4707
  };
4270
4708
  };
4271
4709
  };
4272
- COTH: {
4710
+ ACOSH: {
4273
4711
  description: string;
4274
4712
  abstract: string;
4275
4713
  links: {
@@ -4283,7 +4721,7 @@ declare const _default: {
4283
4721
  };
4284
4722
  };
4285
4723
  };
4286
- CSC: {
4724
+ ACOT: {
4287
4725
  description: string;
4288
4726
  abstract: string;
4289
4727
  links: {
@@ -4297,7 +4735,7 @@ declare const _default: {
4297
4735
  };
4298
4736
  };
4299
4737
  };
4300
- CSCH: {
4738
+ ACOTH: {
4301
4739
  description: string;
4302
4740
  abstract: string;
4303
4741
  links: {
@@ -4311,7 +4749,7 @@ declare const _default: {
4311
4749
  };
4312
4750
  };
4313
4751
  };
4314
- DECIMAL: {
4752
+ ASIN: {
4315
4753
  description: string;
4316
4754
  abstract: string;
4317
4755
  links: {
@@ -4319,17 +4757,13 @@ declare const _default: {
4319
4757
  url: string;
4320
4758
  }[];
4321
4759
  functionParameter: {
4322
- text: {
4323
- name: string;
4324
- detail: string;
4325
- };
4326
- radix: {
4760
+ number: {
4327
4761
  name: string;
4328
4762
  detail: string;
4329
4763
  };
4330
4764
  };
4331
4765
  };
4332
- DEGREES: {
4766
+ ASINH: {
4333
4767
  description: string;
4334
4768
  abstract: string;
4335
4769
  links: {
@@ -4337,13 +4771,13 @@ declare const _default: {
4337
4771
  url: string;
4338
4772
  }[];
4339
4773
  functionParameter: {
4340
- angle: {
4774
+ number: {
4341
4775
  name: string;
4342
4776
  detail: string;
4343
4777
  };
4344
4778
  };
4345
4779
  };
4346
- EVEN: {
4780
+ ATAN: {
4347
4781
  description: string;
4348
4782
  abstract: string;
4349
4783
  links: {
@@ -4357,7 +4791,7 @@ declare const _default: {
4357
4791
  };
4358
4792
  };
4359
4793
  };
4360
- EXP: {
4794
+ ATAN2: {
4361
4795
  description: string;
4362
4796
  abstract: string;
4363
4797
  links: {
@@ -4365,13 +4799,17 @@ declare const _default: {
4365
4799
  url: string;
4366
4800
  }[];
4367
4801
  functionParameter: {
4368
- number: {
4802
+ xNum: {
4803
+ name: string;
4804
+ detail: string;
4805
+ };
4806
+ yNum: {
4369
4807
  name: string;
4370
4808
  detail: string;
4371
4809
  };
4372
4810
  };
4373
4811
  };
4374
- FACT: {
4812
+ ATANH: {
4375
4813
  description: string;
4376
4814
  abstract: string;
4377
4815
  links: {
@@ -4379,17 +4817,13 @@ declare const _default: {
4379
4817
  url: string;
4380
4818
  }[];
4381
4819
  functionParameter: {
4382
- number1: {
4383
- name: string;
4384
- detail: string;
4385
- };
4386
- number2: {
4820
+ number: {
4387
4821
  name: string;
4388
4822
  detail: string;
4389
4823
  };
4390
4824
  };
4391
4825
  };
4392
- FACTDOUBLE: {
4826
+ BASE: {
4393
4827
  description: string;
4394
4828
  abstract: string;
4395
4829
  links: {
@@ -4397,17 +4831,21 @@ declare const _default: {
4397
4831
  url: string;
4398
4832
  }[];
4399
4833
  functionParameter: {
4400
- number1: {
4834
+ number: {
4401
4835
  name: string;
4402
4836
  detail: string;
4403
4837
  };
4404
- number2: {
4838
+ radix: {
4839
+ name: string;
4840
+ detail: string;
4841
+ };
4842
+ minLength: {
4405
4843
  name: string;
4406
4844
  detail: string;
4407
4845
  };
4408
4846
  };
4409
4847
  };
4410
- FLOOR: {
4848
+ CEILING: {
4411
4849
  description: string;
4412
4850
  abstract: string;
4413
4851
  links: {
@@ -4425,7 +4863,7 @@ declare const _default: {
4425
4863
  };
4426
4864
  };
4427
4865
  };
4428
- FLOOR_MATH: {
4866
+ CEILING_MATH: {
4429
4867
  description: string;
4430
4868
  abstract: string;
4431
4869
  links: {
@@ -4447,7 +4885,7 @@ declare const _default: {
4447
4885
  };
4448
4886
  };
4449
4887
  };
4450
- FLOOR_PRECISE: {
4888
+ CEILING_PRECISE: {
4451
4889
  description: string;
4452
4890
  abstract: string;
4453
4891
  links: {
@@ -4465,7 +4903,7 @@ declare const _default: {
4465
4903
  };
4466
4904
  };
4467
4905
  };
4468
- GCD: {
4906
+ COS: {
4469
4907
  description: string;
4470
4908
  abstract: string;
4471
4909
  links: {
@@ -4473,17 +4911,27 @@ declare const _default: {
4473
4911
  url: string;
4474
4912
  }[];
4475
4913
  functionParameter: {
4476
- number1: {
4914
+ number: {
4477
4915
  name: string;
4478
4916
  detail: string;
4479
4917
  };
4480
- number2: {
4918
+ };
4919
+ };
4920
+ COSH: {
4921
+ description: string;
4922
+ abstract: string;
4923
+ links: {
4924
+ title: string;
4925
+ url: string;
4926
+ }[];
4927
+ functionParameter: {
4928
+ number: {
4481
4929
  name: string;
4482
4930
  detail: string;
4483
4931
  };
4484
4932
  };
4485
4933
  };
4486
- INT: {
4934
+ COT: {
4487
4935
  description: string;
4488
4936
  abstract: string;
4489
4937
  links: {
@@ -4491,17 +4939,27 @@ declare const _default: {
4491
4939
  url: string;
4492
4940
  }[];
4493
4941
  functionParameter: {
4494
- number1: {
4942
+ number: {
4495
4943
  name: string;
4496
4944
  detail: string;
4497
4945
  };
4498
- number2: {
4946
+ };
4947
+ };
4948
+ COTH: {
4949
+ description: string;
4950
+ abstract: string;
4951
+ links: {
4952
+ title: string;
4953
+ url: string;
4954
+ }[];
4955
+ functionParameter: {
4956
+ number: {
4499
4957
  name: string;
4500
4958
  detail: string;
4501
4959
  };
4502
4960
  };
4503
4961
  };
4504
- ISO_CEILING: {
4962
+ CSC: {
4505
4963
  description: string;
4506
4964
  abstract: string;
4507
4965
  links: {
@@ -4509,17 +4967,27 @@ declare const _default: {
4509
4967
  url: string;
4510
4968
  }[];
4511
4969
  functionParameter: {
4512
- number1: {
4970
+ number: {
4513
4971
  name: string;
4514
4972
  detail: string;
4515
4973
  };
4516
- number2: {
4974
+ };
4975
+ };
4976
+ CSCH: {
4977
+ description: string;
4978
+ abstract: string;
4979
+ links: {
4980
+ title: string;
4981
+ url: string;
4982
+ }[];
4983
+ functionParameter: {
4984
+ number: {
4517
4985
  name: string;
4518
4986
  detail: string;
4519
4987
  };
4520
4988
  };
4521
4989
  };
4522
- LCM: {
4990
+ DECIMAL: {
4523
4991
  description: string;
4524
4992
  abstract: string;
4525
4993
  links: {
@@ -4527,17 +4995,17 @@ declare const _default: {
4527
4995
  url: string;
4528
4996
  }[];
4529
4997
  functionParameter: {
4530
- number1: {
4998
+ text: {
4531
4999
  name: string;
4532
5000
  detail: string;
4533
5001
  };
4534
- number2: {
5002
+ radix: {
4535
5003
  name: string;
4536
5004
  detail: string;
4537
5005
  };
4538
5006
  };
4539
5007
  };
4540
- LN: {
5008
+ DEGREES: {
4541
5009
  description: string;
4542
5010
  abstract: string;
4543
5011
  links: {
@@ -4545,13 +5013,13 @@ declare const _default: {
4545
5013
  url: string;
4546
5014
  }[];
4547
5015
  functionParameter: {
4548
- number: {
5016
+ angle: {
4549
5017
  name: string;
4550
5018
  detail: string;
4551
5019
  };
4552
5020
  };
4553
5021
  };
4554
- LOG: {
5022
+ EVEN: {
4555
5023
  description: string;
4556
5024
  abstract: string;
4557
5025
  links: {
@@ -4563,13 +5031,23 @@ declare const _default: {
4563
5031
  name: string;
4564
5032
  detail: string;
4565
5033
  };
4566
- base: {
5034
+ };
5035
+ };
5036
+ EXP: {
5037
+ description: string;
5038
+ abstract: string;
5039
+ links: {
5040
+ title: string;
5041
+ url: string;
5042
+ }[];
5043
+ functionParameter: {
5044
+ number: {
4567
5045
  name: string;
4568
5046
  detail: string;
4569
5047
  };
4570
5048
  };
4571
5049
  };
4572
- LOG10: {
5050
+ FLOOR: {
4573
5051
  description: string;
4574
5052
  abstract: string;
4575
5053
  links: {
@@ -4581,9 +5059,13 @@ declare const _default: {
4581
5059
  name: string;
4582
5060
  detail: string;
4583
5061
  };
5062
+ significance: {
5063
+ name: string;
5064
+ detail: string;
5065
+ };
4584
5066
  };
4585
5067
  };
4586
- MDETERM: {
5068
+ FLOOR_MATH: {
4587
5069
  description: string;
4588
5070
  abstract: string;
4589
5071
  links: {
@@ -4591,17 +5073,21 @@ declare const _default: {
4591
5073
  url: string;
4592
5074
  }[];
4593
5075
  functionParameter: {
4594
- number1: {
5076
+ number: {
4595
5077
  name: string;
4596
5078
  detail: string;
4597
5079
  };
4598
- number2: {
5080
+ significance: {
5081
+ name: string;
5082
+ detail: string;
5083
+ };
5084
+ mode: {
4599
5085
  name: string;
4600
5086
  detail: string;
4601
5087
  };
4602
5088
  };
4603
5089
  };
4604
- MINVERSE: {
5090
+ FLOOR_PRECISE: {
4605
5091
  description: string;
4606
5092
  abstract: string;
4607
5093
  links: {
@@ -4609,17 +5095,17 @@ declare const _default: {
4609
5095
  url: string;
4610
5096
  }[];
4611
5097
  functionParameter: {
4612
- number1: {
5098
+ number: {
4613
5099
  name: string;
4614
5100
  detail: string;
4615
5101
  };
4616
- number2: {
5102
+ significance: {
4617
5103
  name: string;
4618
5104
  detail: string;
4619
5105
  };
4620
5106
  };
4621
5107
  };
4622
- MMULT: {
5108
+ LN: {
4623
5109
  description: string;
4624
5110
  abstract: string;
4625
5111
  links: {
@@ -4627,17 +5113,13 @@ declare const _default: {
4627
5113
  url: string;
4628
5114
  }[];
4629
5115
  functionParameter: {
4630
- number1: {
4631
- name: string;
4632
- detail: string;
4633
- };
4634
- number2: {
5116
+ number: {
4635
5117
  name: string;
4636
5118
  detail: string;
4637
5119
  };
4638
5120
  };
4639
5121
  };
4640
- MOD: {
5122
+ LOG: {
4641
5123
  description: string;
4642
5124
  abstract: string;
4643
5125
  links: {
@@ -4649,13 +5131,13 @@ declare const _default: {
4649
5131
  name: string;
4650
5132
  detail: string;
4651
5133
  };
4652
- divisor: {
5134
+ base: {
4653
5135
  name: string;
4654
5136
  detail: string;
4655
5137
  };
4656
5138
  };
4657
5139
  };
4658
- MROUND: {
5140
+ LOG10: {
4659
5141
  description: string;
4660
5142
  abstract: string;
4661
5143
  links: {
@@ -4667,13 +5149,9 @@ declare const _default: {
4667
5149
  name: string;
4668
5150
  detail: string;
4669
5151
  };
4670
- multiple: {
4671
- name: string;
4672
- detail: string;
4673
- };
4674
5152
  };
4675
5153
  };
4676
- MULTINOMIAL: {
5154
+ MOD: {
4677
5155
  description: string;
4678
5156
  abstract: string;
4679
5157
  links: {
@@ -4681,17 +5159,17 @@ declare const _default: {
4681
5159
  url: string;
4682
5160
  }[];
4683
5161
  functionParameter: {
4684
- number1: {
5162
+ number: {
4685
5163
  name: string;
4686
5164
  detail: string;
4687
5165
  };
4688
- number2: {
5166
+ divisor: {
4689
5167
  name: string;
4690
5168
  detail: string;
4691
5169
  };
4692
5170
  };
4693
5171
  };
4694
- MUNIT: {
5172
+ MROUND: {
4695
5173
  description: string;
4696
5174
  abstract: string;
4697
5175
  links: {
@@ -4699,11 +5177,11 @@ declare const _default: {
4699
5177
  url: string;
4700
5178
  }[];
4701
5179
  functionParameter: {
4702
- number1: {
5180
+ number: {
4703
5181
  name: string;
4704
5182
  detail: string;
4705
5183
  };
4706
- number2: {
5184
+ multiple: {
4707
5185
  name: string;
4708
5186
  detail: string;
4709
5187
  };
@@ -4768,24 +5246,6 @@ declare const _default: {
4768
5246
  };
4769
5247
  };
4770
5248
  };
4771
- QUOTIENT: {
4772
- description: string;
4773
- abstract: string;
4774
- links: {
4775
- title: string;
4776
- url: string;
4777
- }[];
4778
- functionParameter: {
4779
- number1: {
4780
- name: string;
4781
- detail: string;
4782
- };
4783
- number2: {
4784
- name: string;
4785
- detail: string;
4786
- };
4787
- };
4788
- };
4789
5249
  RADIANS: {
4790
5250
  description: string;
4791
5251
  abstract: string;
@@ -4857,24 +5317,6 @@ declare const _default: {
4857
5317
  };
4858
5318
  };
4859
5319
  };
4860
- ROMAN: {
4861
- description: string;
4862
- abstract: string;
4863
- links: {
4864
- title: string;
4865
- url: string;
4866
- }[];
4867
- functionParameter: {
4868
- number1: {
4869
- name: string;
4870
- detail: string;
4871
- };
4872
- number2: {
4873
- name: string;
4874
- detail: string;
4875
- };
4876
- };
4877
- };
4878
5320
  ROUND: {
4879
5321
  description: string;
4880
5322
  abstract: string;
@@ -4957,60 +5399,6 @@ declare const _default: {
4957
5399
  };
4958
5400
  };
4959
5401
  };
4960
- SERIESSUM: {
4961
- description: string;
4962
- abstract: string;
4963
- links: {
4964
- title: string;
4965
- url: string;
4966
- }[];
4967
- functionParameter: {
4968
- number1: {
4969
- name: string;
4970
- detail: string;
4971
- };
4972
- number2: {
4973
- name: string;
4974
- detail: string;
4975
- };
4976
- };
4977
- };
4978
- SEQUENCE: {
4979
- description: string;
4980
- abstract: string;
4981
- links: {
4982
- title: string;
4983
- url: string;
4984
- }[];
4985
- functionParameter: {
4986
- number1: {
4987
- name: string;
4988
- detail: string;
4989
- };
4990
- number2: {
4991
- name: string;
4992
- detail: string;
4993
- };
4994
- };
4995
- };
4996
- SIGN: {
4997
- description: string;
4998
- abstract: string;
4999
- links: {
5000
- title: string;
5001
- url: string;
5002
- }[];
5003
- functionParameter: {
5004
- number1: {
5005
- name: string;
5006
- detail: string;
5007
- };
5008
- number2: {
5009
- name: string;
5010
- detail: string;
5011
- };
5012
- };
5013
- };
5014
5402
  SIN: {
5015
5403
  description: string;
5016
5404
  abstract: string;
@@ -5325,11 +5713,15 @@ declare const _default: {
5325
5713
  url: string;
5326
5714
  }[];
5327
5715
  functionParameter: {
5328
- number1: {
5716
+ startDate: {
5329
5717
  name: string;
5330
5718
  detail: string;
5331
5719
  };
5332
- number2: {
5720
+ endDate: {
5721
+ name: string;
5722
+ detail: string;
5723
+ };
5724
+ method: {
5333
5725
  name: string;
5334
5726
  detail: string;
5335
5727
  };
@@ -5371,11 +5763,11 @@ declare const _default: {
5371
5763
  url: string;
5372
5764
  }[];
5373
5765
  functionParameter: {
5374
- number1: {
5766
+ endDate: {
5375
5767
  name: string;
5376
5768
  detail: string;
5377
5769
  };
5378
- number2: {
5770
+ startDate: {
5379
5771
  name: string;
5380
5772
  detail: string;
5381
5773
  };
@@ -5389,11 +5781,15 @@ declare const _default: {
5389
5781
  url: string;
5390
5782
  }[];
5391
5783
  functionParameter: {
5392
- number1: {
5784
+ startDate: {
5393
5785
  name: string;
5394
5786
  detail: string;
5395
5787
  };
5396
- number2: {
5788
+ endDate: {
5789
+ name: string;
5790
+ detail: string;
5791
+ };
5792
+ method: {
5397
5793
  name: string;
5398
5794
  detail: string;
5399
5795
  };
@@ -5425,11 +5821,11 @@ declare const _default: {
5425
5821
  url: string;
5426
5822
  }[];
5427
5823
  functionParameter: {
5428
- number1: {
5824
+ startDate: {
5429
5825
  name: string;
5430
5826
  detail: string;
5431
5827
  };
5432
- number2: {
5828
+ months: {
5433
5829
  name: string;
5434
5830
  detail: string;
5435
5831
  };
@@ -5443,11 +5839,21 @@ declare const _default: {
5443
5839
  url: string;
5444
5840
  }[];
5445
5841
  functionParameter: {
5446
- number1: {
5842
+ serialNumber: {
5447
5843
  name: string;
5448
5844
  detail: string;
5449
5845
  };
5450
- number2: {
5846
+ };
5847
+ };
5848
+ ISOWEEKNUM: {
5849
+ description: string;
5850
+ abstract: string;
5851
+ links: {
5852
+ title: string;
5853
+ url: string;
5854
+ }[];
5855
+ functionParameter: {
5856
+ date: {
5451
5857
  name: string;
5452
5858
  detail: string;
5453
5859
  };
@@ -5461,11 +5867,7 @@ declare const _default: {
5461
5867
  url: string;
5462
5868
  }[];
5463
5869
  functionParameter: {
5464
- number1: {
5465
- name: string;
5466
- detail: string;
5467
- };
5468
- number2: {
5870
+ serialNumber: {
5469
5871
  name: string;
5470
5872
  detail: string;
5471
5873
  };
@@ -5493,17 +5895,21 @@ declare const _default: {
5493
5895
  url: string;
5494
5896
  }[];
5495
5897
  functionParameter: {
5496
- number1: {
5898
+ startDate: {
5497
5899
  name: string;
5498
5900
  detail: string;
5499
5901
  };
5500
- number2: {
5902
+ endDate: {
5903
+ name: string;
5904
+ detail: string;
5905
+ };
5906
+ holidays: {
5501
5907
  name: string;
5502
5908
  detail: string;
5503
5909
  };
5504
5910
  };
5505
5911
  };
5506
- SECOND: {
5912
+ NETWORKDAYS_INTL: {
5507
5913
  description: string;
5508
5914
  abstract: string;
5509
5915
  links: {
@@ -5511,11 +5917,42 @@ declare const _default: {
5511
5917
  url: string;
5512
5918
  }[];
5513
5919
  functionParameter: {
5514
- number1: {
5920
+ startDate: {
5515
5921
  name: string;
5516
5922
  detail: string;
5517
5923
  };
5518
- number2: {
5924
+ endDate: {
5925
+ name: string;
5926
+ detail: string;
5927
+ };
5928
+ weekend: {
5929
+ name: string;
5930
+ detail: string;
5931
+ };
5932
+ holidays: {
5933
+ name: string;
5934
+ detail: string;
5935
+ };
5936
+ };
5937
+ };
5938
+ NOW: {
5939
+ description: string;
5940
+ abstract: string;
5941
+ links: {
5942
+ title: string;
5943
+ url: string;
5944
+ }[];
5945
+ functionParameter: {};
5946
+ };
5947
+ SECOND: {
5948
+ description: string;
5949
+ abstract: string;
5950
+ links: {
5951
+ title: string;
5952
+ url: string;
5953
+ }[];
5954
+ functionParameter: {
5955
+ serialNumber: {
5519
5956
  name: string;
5520
5957
  detail: string;
5521
5958
  };
@@ -5529,11 +5966,15 @@ declare const _default: {
5529
5966
  url: string;
5530
5967
  }[];
5531
5968
  functionParameter: {
5532
- number1: {
5969
+ hour: {
5533
5970
  name: string;
5534
5971
  detail: string;
5535
5972
  };
5536
- number2: {
5973
+ minute: {
5974
+ name: string;
5975
+ detail: string;
5976
+ };
5977
+ second: {
5537
5978
  name: string;
5538
5979
  detail: string;
5539
5980
  };
@@ -5570,11 +6011,11 @@ declare const _default: {
5570
6011
  url: string;
5571
6012
  }[];
5572
6013
  functionParameter: {
5573
- number1: {
6014
+ serialNumber: {
5574
6015
  name: string;
5575
6016
  detail: string;
5576
6017
  };
5577
- number2: {
6018
+ returnType: {
5578
6019
  name: string;
5579
6020
  detail: string;
5580
6021
  };
@@ -5588,11 +6029,11 @@ declare const _default: {
5588
6029
  url: string;
5589
6030
  }[];
5590
6031
  functionParameter: {
5591
- number1: {
6032
+ serialNumber: {
5592
6033
  name: string;
5593
6034
  detail: string;
5594
6035
  };
5595
- number2: {
6036
+ returnType: {
5596
6037
  name: string;
5597
6038
  detail: string;
5598
6039
  };
@@ -5620,6 +6061,32 @@ declare const _default: {
5620
6061
  };
5621
6062
  };
5622
6063
  };
6064
+ WORKDAY_INTL: {
6065
+ description: string;
6066
+ abstract: string;
6067
+ links: {
6068
+ title: string;
6069
+ url: string;
6070
+ }[];
6071
+ functionParameter: {
6072
+ startDate: {
6073
+ name: string;
6074
+ detail: string;
6075
+ };
6076
+ days: {
6077
+ name: string;
6078
+ detail: string;
6079
+ };
6080
+ weekend: {
6081
+ name: string;
6082
+ detail: string;
6083
+ };
6084
+ holidays: {
6085
+ name: string;
6086
+ detail: string;
6087
+ };
6088
+ };
6089
+ };
5623
6090
  YEAR: {
5624
6091
  description: string;
5625
6092
  abstract: string;
@@ -5664,11 +6131,35 @@ declare const _default: {
5664
6131
  url: string;
5665
6132
  }[];
5666
6133
  functionParameter: {
5667
- number1: {
6134
+ issue: {
5668
6135
  name: string;
5669
6136
  detail: string;
5670
6137
  };
5671
- number2: {
6138
+ firstInterest: {
6139
+ name: string;
6140
+ detail: string;
6141
+ };
6142
+ settlement: {
6143
+ name: string;
6144
+ detail: string;
6145
+ };
6146
+ rate: {
6147
+ name: string;
6148
+ detail: string;
6149
+ };
6150
+ par: {
6151
+ name: string;
6152
+ detail: string;
6153
+ };
6154
+ frequency: {
6155
+ name: string;
6156
+ detail: string;
6157
+ };
6158
+ basis: {
6159
+ name: string;
6160
+ detail: string;
6161
+ };
6162
+ calcMethod: {
5672
6163
  name: string;
5673
6164
  detail: string;
5674
6165
  };
@@ -5682,11 +6173,23 @@ declare const _default: {
5682
6173
  url: string;
5683
6174
  }[];
5684
6175
  functionParameter: {
5685
- number1: {
6176
+ issue: {
6177
+ name: string;
6178
+ detail: string;
6179
+ };
6180
+ settlement: {
6181
+ name: string;
6182
+ detail: string;
6183
+ };
6184
+ rate: {
5686
6185
  name: string;
5687
6186
  detail: string;
5688
6187
  };
5689
- number2: {
6188
+ par: {
6189
+ name: string;
6190
+ detail: string;
6191
+ };
6192
+ basis: {
5690
6193
  name: string;
5691
6194
  detail: string;
5692
6195
  };
@@ -5718,11 +6221,31 @@ declare const _default: {
5718
6221
  url: string;
5719
6222
  }[];
5720
6223
  functionParameter: {
5721
- number1: {
6224
+ cost: {
5722
6225
  name: string;
5723
6226
  detail: string;
5724
6227
  };
5725
- number2: {
6228
+ datePurchased: {
6229
+ name: string;
6230
+ detail: string;
6231
+ };
6232
+ firstPeriod: {
6233
+ name: string;
6234
+ detail: string;
6235
+ };
6236
+ salvage: {
6237
+ name: string;
6238
+ detail: string;
6239
+ };
6240
+ period: {
6241
+ name: string;
6242
+ detail: string;
6243
+ };
6244
+ rate: {
6245
+ name: string;
6246
+ detail: string;
6247
+ };
6248
+ basis: {
5726
6249
  name: string;
5727
6250
  detail: string;
5728
6251
  };
@@ -5736,11 +6259,19 @@ declare const _default: {
5736
6259
  url: string;
5737
6260
  }[];
5738
6261
  functionParameter: {
5739
- number1: {
6262
+ settlement: {
5740
6263
  name: string;
5741
6264
  detail: string;
5742
6265
  };
5743
- number2: {
6266
+ maturity: {
6267
+ name: string;
6268
+ detail: string;
6269
+ };
6270
+ frequency: {
6271
+ name: string;
6272
+ detail: string;
6273
+ };
6274
+ basis: {
5744
6275
  name: string;
5745
6276
  detail: string;
5746
6277
  };
@@ -5754,11 +6285,19 @@ declare const _default: {
5754
6285
  url: string;
5755
6286
  }[];
5756
6287
  functionParameter: {
5757
- number1: {
6288
+ settlement: {
5758
6289
  name: string;
5759
6290
  detail: string;
5760
6291
  };
5761
- number2: {
6292
+ maturity: {
6293
+ name: string;
6294
+ detail: string;
6295
+ };
6296
+ frequency: {
6297
+ name: string;
6298
+ detail: string;
6299
+ };
6300
+ basis: {
5762
6301
  name: string;
5763
6302
  detail: string;
5764
6303
  };
@@ -5772,11 +6311,19 @@ declare const _default: {
5772
6311
  url: string;
5773
6312
  }[];
5774
6313
  functionParameter: {
5775
- number1: {
6314
+ settlement: {
5776
6315
  name: string;
5777
6316
  detail: string;
5778
6317
  };
5779
- number2: {
6318
+ maturity: {
6319
+ name: string;
6320
+ detail: string;
6321
+ };
6322
+ frequency: {
6323
+ name: string;
6324
+ detail: string;
6325
+ };
6326
+ basis: {
5780
6327
  name: string;
5781
6328
  detail: string;
5782
6329
  };
@@ -5790,11 +6337,19 @@ declare const _default: {
5790
6337
  url: string;
5791
6338
  }[];
5792
6339
  functionParameter: {
5793
- number1: {
6340
+ settlement: {
5794
6341
  name: string;
5795
6342
  detail: string;
5796
6343
  };
5797
- number2: {
6344
+ maturity: {
6345
+ name: string;
6346
+ detail: string;
6347
+ };
6348
+ frequency: {
6349
+ name: string;
6350
+ detail: string;
6351
+ };
6352
+ basis: {
5798
6353
  name: string;
5799
6354
  detail: string;
5800
6355
  };
@@ -5808,11 +6363,19 @@ declare const _default: {
5808
6363
  url: string;
5809
6364
  }[];
5810
6365
  functionParameter: {
5811
- number1: {
6366
+ settlement: {
5812
6367
  name: string;
5813
6368
  detail: string;
5814
6369
  };
5815
- number2: {
6370
+ maturity: {
6371
+ name: string;
6372
+ detail: string;
6373
+ };
6374
+ frequency: {
6375
+ name: string;
6376
+ detail: string;
6377
+ };
6378
+ basis: {
5816
6379
  name: string;
5817
6380
  detail: string;
5818
6381
  };
@@ -5826,11 +6389,19 @@ declare const _default: {
5826
6389
  url: string;
5827
6390
  }[];
5828
6391
  functionParameter: {
5829
- number1: {
6392
+ settlement: {
5830
6393
  name: string;
5831
6394
  detail: string;
5832
6395
  };
5833
- number2: {
6396
+ maturity: {
6397
+ name: string;
6398
+ detail: string;
6399
+ };
6400
+ frequency: {
6401
+ name: string;
6402
+ detail: string;
6403
+ };
6404
+ basis: {
5834
6405
  name: string;
5835
6406
  detail: string;
5836
6407
  };
@@ -5844,11 +6415,27 @@ declare const _default: {
5844
6415
  url: string;
5845
6416
  }[];
5846
6417
  functionParameter: {
5847
- number1: {
6418
+ rate: {
5848
6419
  name: string;
5849
6420
  detail: string;
5850
6421
  };
5851
- number2: {
6422
+ nper: {
6423
+ name: string;
6424
+ detail: string;
6425
+ };
6426
+ pv: {
6427
+ name: string;
6428
+ detail: string;
6429
+ };
6430
+ startPeriod: {
6431
+ name: string;
6432
+ detail: string;
6433
+ };
6434
+ endPeriod: {
6435
+ name: string;
6436
+ detail: string;
6437
+ };
6438
+ type: {
5852
6439
  name: string;
5853
6440
  detail: string;
5854
6441
  };
@@ -5862,11 +6449,27 @@ declare const _default: {
5862
6449
  url: string;
5863
6450
  }[];
5864
6451
  functionParameter: {
5865
- number1: {
6452
+ rate: {
5866
6453
  name: string;
5867
6454
  detail: string;
5868
6455
  };
5869
- number2: {
6456
+ nper: {
6457
+ name: string;
6458
+ detail: string;
6459
+ };
6460
+ pv: {
6461
+ name: string;
6462
+ detail: string;
6463
+ };
6464
+ startPeriod: {
6465
+ name: string;
6466
+ detail: string;
6467
+ };
6468
+ endPeriod: {
6469
+ name: string;
6470
+ detail: string;
6471
+ };
6472
+ type: {
5870
6473
  name: string;
5871
6474
  detail: string;
5872
6475
  };
@@ -5880,11 +6483,23 @@ declare const _default: {
5880
6483
  url: string;
5881
6484
  }[];
5882
6485
  functionParameter: {
5883
- number1: {
6486
+ cost: {
5884
6487
  name: string;
5885
6488
  detail: string;
5886
6489
  };
5887
- number2: {
6490
+ salvage: {
6491
+ name: string;
6492
+ detail: string;
6493
+ };
6494
+ life: {
6495
+ name: string;
6496
+ detail: string;
6497
+ };
6498
+ period: {
6499
+ name: string;
6500
+ detail: string;
6501
+ };
6502
+ month: {
5888
6503
  name: string;
5889
6504
  detail: string;
5890
6505
  };
@@ -5898,11 +6513,23 @@ declare const _default: {
5898
6513
  url: string;
5899
6514
  }[];
5900
6515
  functionParameter: {
5901
- number1: {
6516
+ cost: {
5902
6517
  name: string;
5903
6518
  detail: string;
5904
6519
  };
5905
- number2: {
6520
+ salvage: {
6521
+ name: string;
6522
+ detail: string;
6523
+ };
6524
+ life: {
6525
+ name: string;
6526
+ detail: string;
6527
+ };
6528
+ period: {
6529
+ name: string;
6530
+ detail: string;
6531
+ };
6532
+ factor: {
5906
6533
  name: string;
5907
6534
  detail: string;
5908
6535
  };
@@ -5916,11 +6543,23 @@ declare const _default: {
5916
6543
  url: string;
5917
6544
  }[];
5918
6545
  functionParameter: {
5919
- number1: {
6546
+ settlement: {
5920
6547
  name: string;
5921
6548
  detail: string;
5922
6549
  };
5923
- number2: {
6550
+ maturity: {
6551
+ name: string;
6552
+ detail: string;
6553
+ };
6554
+ pr: {
6555
+ name: string;
6556
+ detail: string;
6557
+ };
6558
+ redemption: {
6559
+ name: string;
6560
+ detail: string;
6561
+ };
6562
+ basis: {
5924
6563
  name: string;
5925
6564
  detail: string;
5926
6565
  };
@@ -5934,11 +6573,11 @@ declare const _default: {
5934
6573
  url: string;
5935
6574
  }[];
5936
6575
  functionParameter: {
5937
- number1: {
6576
+ fractionalDollar: {
5938
6577
  name: string;
5939
6578
  detail: string;
5940
6579
  };
5941
- number2: {
6580
+ fraction: {
5942
6581
  name: string;
5943
6582
  detail: string;
5944
6583
  };
@@ -5952,11 +6591,11 @@ declare const _default: {
5952
6591
  url: string;
5953
6592
  }[];
5954
6593
  functionParameter: {
5955
- number1: {
6594
+ decimalDollar: {
5956
6595
  name: string;
5957
6596
  detail: string;
5958
6597
  };
5959
- number2: {
6598
+ fraction: {
5960
6599
  name: string;
5961
6600
  detail: string;
5962
6601
  };
@@ -5988,11 +6627,11 @@ declare const _default: {
5988
6627
  url: string;
5989
6628
  }[];
5990
6629
  functionParameter: {
5991
- number1: {
6630
+ nominalRate: {
5992
6631
  name: string;
5993
6632
  detail: string;
5994
6633
  };
5995
- number2: {
6634
+ npery: {
5996
6635
  name: string;
5997
6636
  detail: string;
5998
6637
  };
@@ -6006,11 +6645,23 @@ declare const _default: {
6006
6645
  url: string;
6007
6646
  }[];
6008
6647
  functionParameter: {
6009
- number1: {
6648
+ rate: {
6010
6649
  name: string;
6011
6650
  detail: string;
6012
6651
  };
6013
- number2: {
6652
+ nper: {
6653
+ name: string;
6654
+ detail: string;
6655
+ };
6656
+ pmt: {
6657
+ name: string;
6658
+ detail: string;
6659
+ };
6660
+ pv: {
6661
+ name: string;
6662
+ detail: string;
6663
+ };
6664
+ type: {
6014
6665
  name: string;
6015
6666
  detail: string;
6016
6667
  };
@@ -6024,11 +6675,11 @@ declare const _default: {
6024
6675
  url: string;
6025
6676
  }[];
6026
6677
  functionParameter: {
6027
- number1: {
6678
+ principal: {
6028
6679
  name: string;
6029
6680
  detail: string;
6030
6681
  };
6031
- number2: {
6682
+ schedule: {
6032
6683
  name: string;
6033
6684
  detail: string;
6034
6685
  };
@@ -6042,11 +6693,23 @@ declare const _default: {
6042
6693
  url: string;
6043
6694
  }[];
6044
6695
  functionParameter: {
6045
- number1: {
6696
+ settlement: {
6046
6697
  name: string;
6047
6698
  detail: string;
6048
6699
  };
6049
- number2: {
6700
+ maturity: {
6701
+ name: string;
6702
+ detail: string;
6703
+ };
6704
+ investment: {
6705
+ name: string;
6706
+ detail: string;
6707
+ };
6708
+ redemption: {
6709
+ name: string;
6710
+ detail: string;
6711
+ };
6712
+ basis: {
6050
6713
  name: string;
6051
6714
  detail: string;
6052
6715
  };
@@ -6060,11 +6723,27 @@ declare const _default: {
6060
6723
  url: string;
6061
6724
  }[];
6062
6725
  functionParameter: {
6063
- number1: {
6726
+ rate: {
6064
6727
  name: string;
6065
6728
  detail: string;
6066
6729
  };
6067
- number2: {
6730
+ per: {
6731
+ name: string;
6732
+ detail: string;
6733
+ };
6734
+ nper: {
6735
+ name: string;
6736
+ detail: string;
6737
+ };
6738
+ pv: {
6739
+ name: string;
6740
+ detail: string;
6741
+ };
6742
+ fv: {
6743
+ name: string;
6744
+ detail: string;
6745
+ };
6746
+ type: {
6068
6747
  name: string;
6069
6748
  detail: string;
6070
6749
  };
@@ -6096,11 +6775,19 @@ declare const _default: {
6096
6775
  url: string;
6097
6776
  }[];
6098
6777
  functionParameter: {
6099
- number1: {
6778
+ rate: {
6100
6779
  name: string;
6101
6780
  detail: string;
6102
6781
  };
6103
- number2: {
6782
+ per: {
6783
+ name: string;
6784
+ detail: string;
6785
+ };
6786
+ nper: {
6787
+ name: string;
6788
+ detail: string;
6789
+ };
6790
+ pv: {
6104
6791
  name: string;
6105
6792
  detail: string;
6106
6793
  };
@@ -6132,11 +6819,11 @@ declare const _default: {
6132
6819
  url: string;
6133
6820
  }[];
6134
6821
  functionParameter: {
6135
- number1: {
6822
+ effectRate: {
6136
6823
  name: string;
6137
6824
  detail: string;
6138
6825
  };
6139
- number2: {
6826
+ npery: {
6140
6827
  name: string;
6141
6828
  detail: string;
6142
6829
  };
@@ -6150,11 +6837,23 @@ declare const _default: {
6150
6837
  url: string;
6151
6838
  }[];
6152
6839
  functionParameter: {
6153
- number1: {
6840
+ rate: {
6154
6841
  name: string;
6155
6842
  detail: string;
6156
6843
  };
6157
- number2: {
6844
+ pmt: {
6845
+ name: string;
6846
+ detail: string;
6847
+ };
6848
+ pv: {
6849
+ name: string;
6850
+ detail: string;
6851
+ };
6852
+ fv: {
6853
+ name: string;
6854
+ detail: string;
6855
+ };
6856
+ type: {
6158
6857
  name: string;
6159
6858
  detail: string;
6160
6859
  };
@@ -6258,11 +6957,23 @@ declare const _default: {
6258
6957
  url: string;
6259
6958
  }[];
6260
6959
  functionParameter: {
6261
- number1: {
6960
+ rate: {
6262
6961
  name: string;
6263
6962
  detail: string;
6264
6963
  };
6265
- number2: {
6964
+ nper: {
6965
+ name: string;
6966
+ detail: string;
6967
+ };
6968
+ pv: {
6969
+ name: string;
6970
+ detail: string;
6971
+ };
6972
+ fv: {
6973
+ name: string;
6974
+ detail: string;
6975
+ };
6976
+ type: {
6266
6977
  name: string;
6267
6978
  detail: string;
6268
6979
  };
@@ -6276,11 +6987,27 @@ declare const _default: {
6276
6987
  url: string;
6277
6988
  }[];
6278
6989
  functionParameter: {
6279
- number1: {
6990
+ rate: {
6280
6991
  name: string;
6281
6992
  detail: string;
6282
6993
  };
6283
- number2: {
6994
+ per: {
6995
+ name: string;
6996
+ detail: string;
6997
+ };
6998
+ nper: {
6999
+ name: string;
7000
+ detail: string;
7001
+ };
7002
+ pv: {
7003
+ name: string;
7004
+ detail: string;
7005
+ };
7006
+ fv: {
7007
+ name: string;
7008
+ detail: string;
7009
+ };
7010
+ type: {
6284
7011
  name: string;
6285
7012
  detail: string;
6286
7013
  };
@@ -6348,11 +7075,23 @@ declare const _default: {
6348
7075
  url: string;
6349
7076
  }[];
6350
7077
  functionParameter: {
6351
- number1: {
7078
+ rate: {
6352
7079
  name: string;
6353
7080
  detail: string;
6354
7081
  };
6355
- number2: {
7082
+ nper: {
7083
+ name: string;
7084
+ detail: string;
7085
+ };
7086
+ pmt: {
7087
+ name: string;
7088
+ detail: string;
7089
+ };
7090
+ fv: {
7091
+ name: string;
7092
+ detail: string;
7093
+ };
7094
+ type: {
6356
7095
  name: string;
6357
7096
  detail: string;
6358
7097
  };
@@ -6366,11 +7105,27 @@ declare const _default: {
6366
7105
  url: string;
6367
7106
  }[];
6368
7107
  functionParameter: {
6369
- number1: {
7108
+ nper: {
6370
7109
  name: string;
6371
7110
  detail: string;
6372
7111
  };
6373
- number2: {
7112
+ pmt: {
7113
+ name: string;
7114
+ detail: string;
7115
+ };
7116
+ pv: {
7117
+ name: string;
7118
+ detail: string;
7119
+ };
7120
+ fv: {
7121
+ name: string;
7122
+ detail: string;
7123
+ };
7124
+ type: {
7125
+ name: string;
7126
+ detail: string;
7127
+ };
7128
+ guess: {
6374
7129
  name: string;
6375
7130
  detail: string;
6376
7131
  };