@univerjs/sheets-formula-ui 0.3.0-nightly.202410101606

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/README.md +39 -0
  2. package/lib/cjs/index.js +1 -0
  3. package/lib/es/index.js +1 -0
  4. package/lib/index.css +1 -0
  5. package/lib/locale/en-US.json +10987 -0
  6. package/lib/locale/ru-RU.json +10938 -0
  7. package/lib/locale/vi-VN.json +9511 -0
  8. package/lib/locale/zh-CN.json +10987 -0
  9. package/lib/locale/zh-TW.json +10987 -0
  10. package/lib/types/commands/commands/formula-clipboard.command.d.ts +2 -0
  11. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +13 -0
  12. package/lib/types/commands/operations/__tests__/insert-function.operation.spec.d.ts +16 -0
  13. package/lib/types/commands/operations/editor-formula.operation.d.ts +11 -0
  14. package/lib/types/commands/operations/help-function.operation.d.ts +2 -0
  15. package/lib/types/commands/operations/insert-function.operation.d.ts +19 -0
  16. package/lib/types/commands/operations/more-functions.operation.d.ts +2 -0
  17. package/lib/types/commands/operations/reference-absolute.operation.d.ts +2 -0
  18. package/lib/types/commands/operations/search-function.operation.d.ts +2 -0
  19. package/lib/types/common/plugin-name.d.ts +16 -0
  20. package/lib/types/common/prompt.d.ts +16 -0
  21. package/lib/types/common/selection.d.ts +4 -0
  22. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +7 -0
  23. package/lib/types/controllers/__tests__/formula-auto-fill.controller.spec.d.ts +16 -0
  24. package/lib/types/controllers/__tests__/formula-clipboard.controller.spec.d.ts +16 -0
  25. package/lib/types/controllers/__tests__/update-formula.controller.spec.d.ts +16 -0
  26. package/lib/types/controllers/config.schema.d.ts +15 -0
  27. package/lib/types/controllers/formula-alert-render.controller.d.ts +15 -0
  28. package/lib/types/controllers/formula-auto-fill.controller.d.ts +10 -0
  29. package/lib/types/controllers/formula-clipboard.controller.d.ts +25 -0
  30. package/lib/types/controllers/formula-editor-show.controller.d.ts +28 -0
  31. package/lib/types/controllers/formula-process.controller.d.ts +15 -0
  32. package/lib/types/controllers/formula-render.controller.d.ts +6 -0
  33. package/lib/types/controllers/formula-ui.controller.d.ts +19 -0
  34. package/lib/types/controllers/menu.d.ts +5 -0
  35. package/lib/types/controllers/menu.schema.d.ts +2 -0
  36. package/lib/types/controllers/prompt.controller.d.ts +170 -0
  37. package/lib/types/controllers/shortcuts/prompt.shortcut.d.ts +9 -0
  38. package/lib/types/controllers/utils/__tests__/offset-formula-data.spec.d.ts +16 -0
  39. package/lib/types/controllers/utils/__tests__/ref-range-formula.spec.d.ts +16 -0
  40. package/lib/types/controllers/utils/__tests__/utils.spec.d.ts +16 -0
  41. package/lib/types/controllers/utils/offset-formula-data.d.ts +15 -0
  42. package/lib/types/controllers/utils/ref-range-formula.d.ts +71 -0
  43. package/lib/types/controllers/utils/utils.d.ts +15 -0
  44. package/lib/types/index.d.ts +25 -0
  45. package/lib/types/locale/en-US.d.ts +9983 -0
  46. package/lib/types/locale/function-list/array/en-US.d.ts +17 -0
  47. package/lib/types/locale/function-list/array/ja-JP.d.ts +17 -0
  48. package/lib/types/locale/function-list/array/ru-RU.d.ts +2 -0
  49. package/lib/types/locale/function-list/array/vi-VN.d.ts +17 -0
  50. package/lib/types/locale/function-list/array/zh-CN.d.ts +17 -0
  51. package/lib/types/locale/function-list/array/zh-TW.d.ts +17 -0
  52. package/lib/types/locale/function-list/compatibility/en-US.d.ts +762 -0
  53. package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +762 -0
  54. package/lib/types/locale/function-list/compatibility/ru-RU.d.ts +2 -0
  55. package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +762 -0
  56. package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +762 -0
  57. package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +762 -0
  58. package/lib/types/locale/function-list/cube/en-US.d.ts +144 -0
  59. package/lib/types/locale/function-list/cube/ja-JP.d.ts +144 -0
  60. package/lib/types/locale/function-list/cube/ru-RU.d.ts +144 -0
  61. package/lib/types/locale/function-list/cube/vi-VN.d.ts +144 -0
  62. package/lib/types/locale/function-list/cube/zh-CN.d.ts +144 -0
  63. package/lib/types/locale/function-list/cube/zh-TW.d.ts +144 -0
  64. package/lib/types/locale/function-list/database/en-US.d.ts +234 -0
  65. package/lib/types/locale/function-list/database/ja-JP.d.ts +234 -0
  66. package/lib/types/locale/function-list/database/ru-RU.d.ts +234 -0
  67. package/lib/types/locale/function-list/database/vi-VN.d.ts +234 -0
  68. package/lib/types/locale/function-list/database/zh-CN.d.ts +234 -0
  69. package/lib/types/locale/function-list/database/zh-TW.d.ts +234 -0
  70. package/lib/types/locale/function-list/date/en-US.d.ts +458 -0
  71. package/lib/types/locale/function-list/date/ja-JP.d.ts +458 -0
  72. package/lib/types/locale/function-list/date/ru-RU.d.ts +2 -0
  73. package/lib/types/locale/function-list/date/vi-VN.d.ts +458 -0
  74. package/lib/types/locale/function-list/date/zh-CN.d.ts +458 -0
  75. package/lib/types/locale/function-list/date/zh-TW.d.ts +458 -0
  76. package/lib/types/locale/function-list/engineering/en-US.d.ts +894 -0
  77. package/lib/types/locale/function-list/engineering/ja-JP.d.ts +894 -0
  78. package/lib/types/locale/function-list/engineering/ru-RU.d.ts +2 -0
  79. package/lib/types/locale/function-list/engineering/vi-VN.d.ts +894 -0
  80. package/lib/types/locale/function-list/engineering/zh-CN.d.ts +894 -0
  81. package/lib/types/locale/function-list/engineering/zh-TW.d.ts +894 -0
  82. package/lib/types/locale/function-list/financial/en-US.d.ts +1608 -0
  83. package/lib/types/locale/function-list/financial/ja-JP.d.ts +1608 -0
  84. package/lib/types/locale/function-list/financial/ru-RU.d.ts +2 -0
  85. package/lib/types/locale/function-list/financial/vi-VN.d.ts +1608 -0
  86. package/lib/types/locale/function-list/financial/zh-CN.d.ts +1608 -0
  87. package/lib/types/locale/function-list/financial/zh-TW.d.ts +1608 -0
  88. package/lib/types/locale/function-list/information/en-US.d.ts +327 -0
  89. package/lib/types/locale/function-list/information/ja-JP.d.ts +327 -0
  90. package/lib/types/locale/function-list/information/ru-RU.d.ts +2 -0
  91. package/lib/types/locale/function-list/information/vi-VN.d.ts +255 -0
  92. package/lib/types/locale/function-list/information/zh-CN.d.ts +327 -0
  93. package/lib/types/locale/function-list/information/zh-TW.d.ts +327 -0
  94. package/lib/types/locale/function-list/logical/en-US.d.ts +390 -0
  95. package/lib/types/locale/function-list/logical/ja-JP.d.ts +390 -0
  96. package/lib/types/locale/function-list/logical/ru-RU.d.ts +2 -0
  97. package/lib/types/locale/function-list/logical/vi-VN.d.ts +390 -0
  98. package/lib/types/locale/function-list/logical/zh-CN.d.ts +390 -0
  99. package/lib/types/locale/function-list/logical/zh-TW.d.ts +390 -0
  100. package/lib/types/locale/function-list/lookup/en-US.d.ts +812 -0
  101. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +812 -0
  102. package/lib/types/locale/function-list/lookup/ru-RU.d.ts +2 -0
  103. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +722 -0
  104. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +812 -0
  105. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +812 -0
  106. package/lib/types/locale/function-list/math/en-US.d.ts +1388 -0
  107. package/lib/types/locale/function-list/math/ja-JP.d.ts +1388 -0
  108. package/lib/types/locale/function-list/math/ru-RU.d.ts +2 -0
  109. package/lib/types/locale/function-list/math/vi-VN.d.ts +1298 -0
  110. package/lib/types/locale/function-list/math/zh-CN.d.ts +1388 -0
  111. package/lib/types/locale/function-list/math/zh-TW.d.ts +1388 -0
  112. package/lib/types/locale/function-list/statistical/en-US.d.ts +2160 -0
  113. package/lib/types/locale/function-list/statistical/ja-JP.d.ts +2160 -0
  114. package/lib/types/locale/function-list/statistical/ru-RU.d.ts +2 -0
  115. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +1188 -0
  116. package/lib/types/locale/function-list/statistical/zh-CN.d.ts +2160 -0
  117. package/lib/types/locale/function-list/statistical/zh-TW.d.ts +2160 -0
  118. package/lib/types/locale/function-list/text/en-US.d.ts +904 -0
  119. package/lib/types/locale/function-list/text/ja-JP.d.ts +905 -0
  120. package/lib/types/locale/function-list/text/ru-RU.d.ts +856 -0
  121. package/lib/types/locale/function-list/text/vi-VN.d.ts +784 -0
  122. package/lib/types/locale/function-list/text/zh-CN.d.ts +904 -0
  123. package/lib/types/locale/function-list/text/zh-TW.d.ts +904 -0
  124. package/lib/types/locale/function-list/univer/en-US.d.ts +17 -0
  125. package/lib/types/locale/function-list/univer/ja-JP.d.ts +17 -0
  126. package/lib/types/locale/function-list/univer/ru-RU.d.ts +17 -0
  127. package/lib/types/locale/function-list/univer/vi-VN.d.ts +17 -0
  128. package/lib/types/locale/function-list/univer/zh-CN.d.ts +17 -0
  129. package/lib/types/locale/function-list/univer/zh-TW.d.ts +17 -0
  130. package/lib/types/locale/function-list/web/en-US.d.ts +72 -0
  131. package/lib/types/locale/function-list/web/ja-JP.d.ts +72 -0
  132. package/lib/types/locale/function-list/web/ru-RU.d.ts +72 -0
  133. package/lib/types/locale/function-list/web/vi-VN.d.ts +2 -0
  134. package/lib/types/locale/function-list/web/zh-CN.d.ts +72 -0
  135. package/lib/types/locale/function-list/web/zh-TW.d.ts +72 -0
  136. package/lib/types/locale/ru-RU.d.ts +9934 -0
  137. package/lib/types/locale/vi-VN.d.ts +8657 -0
  138. package/lib/types/locale/zh-CN.d.ts +9983 -0
  139. package/lib/types/locale/zh-TW.d.ts +9983 -0
  140. package/lib/types/services/formula-common.d.ts +18 -0
  141. package/lib/types/services/prompt.service.d.ts +160 -0
  142. package/lib/types/services/render-services/ref-selections.render-service.d.ts +42 -0
  143. package/lib/types/services/utils.d.ts +8 -0
  144. package/lib/types/sheets-formula-ui.plugin.d.ts +19 -0
  145. package/lib/types/views/FormulaPromptContainer.d.ts +2 -0
  146. package/lib/types/views/more-functions/MoreFunctions.d.ts +2 -0
  147. package/lib/types/views/more-functions/function-help/FunctionHelp.d.ts +22 -0
  148. package/lib/types/views/more-functions/function-params/FunctionParams.d.ts +8 -0
  149. package/lib/types/views/more-functions/input-params/InputParams.d.ts +7 -0
  150. package/lib/types/views/more-functions/interface.d.ts +16 -0
  151. package/lib/types/views/more-functions/select-function/SelectFunction.d.ts +6 -0
  152. package/lib/types/views/prompt/help-function/HelpFunction.d.ts +2 -0
  153. package/lib/types/views/prompt/resize-scroll-observer.d.ts +18 -0
  154. package/lib/types/views/prompt/search-function/SearchFunction.d.ts +2 -0
  155. package/lib/umd/index.js +1 -0
  156. package/package.json +113 -0
@@ -0,0 +1,894 @@
1
+ /**
2
+ * Copyright 2023-present DreamNum Inc.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ declare const _default: {
17
+ BESSELI: {
18
+ description: string;
19
+ abstract: string;
20
+ links: {
21
+ title: string;
22
+ url: string;
23
+ }[];
24
+ functionParameter: {
25
+ x: {
26
+ name: string;
27
+ detail: string;
28
+ };
29
+ n: {
30
+ name: string;
31
+ detail: string;
32
+ };
33
+ };
34
+ };
35
+ BESSELJ: {
36
+ description: string;
37
+ abstract: string;
38
+ links: {
39
+ title: string;
40
+ url: string;
41
+ }[];
42
+ functionParameter: {
43
+ x: {
44
+ name: string;
45
+ detail: string;
46
+ };
47
+ n: {
48
+ name: string;
49
+ detail: string;
50
+ };
51
+ };
52
+ };
53
+ BESSELK: {
54
+ description: string;
55
+ abstract: string;
56
+ links: {
57
+ title: string;
58
+ url: string;
59
+ }[];
60
+ functionParameter: {
61
+ x: {
62
+ name: string;
63
+ detail: string;
64
+ };
65
+ n: {
66
+ name: string;
67
+ detail: string;
68
+ };
69
+ };
70
+ };
71
+ BESSELY: {
72
+ description: string;
73
+ abstract: string;
74
+ links: {
75
+ title: string;
76
+ url: string;
77
+ }[];
78
+ functionParameter: {
79
+ x: {
80
+ name: string;
81
+ detail: string;
82
+ };
83
+ n: {
84
+ name: string;
85
+ detail: string;
86
+ };
87
+ };
88
+ };
89
+ BIN2DEC: {
90
+ description: string;
91
+ abstract: string;
92
+ links: {
93
+ title: string;
94
+ url: string;
95
+ }[];
96
+ functionParameter: {
97
+ number: {
98
+ name: string;
99
+ detail: string;
100
+ };
101
+ };
102
+ };
103
+ BIN2HEX: {
104
+ description: string;
105
+ abstract: string;
106
+ links: {
107
+ title: string;
108
+ url: string;
109
+ }[];
110
+ functionParameter: {
111
+ number: {
112
+ name: string;
113
+ detail: string;
114
+ };
115
+ places: {
116
+ name: string;
117
+ detail: string;
118
+ };
119
+ };
120
+ };
121
+ BIN2OCT: {
122
+ description: string;
123
+ abstract: string;
124
+ links: {
125
+ title: string;
126
+ url: string;
127
+ }[];
128
+ functionParameter: {
129
+ number: {
130
+ name: string;
131
+ detail: string;
132
+ };
133
+ places: {
134
+ name: string;
135
+ detail: string;
136
+ };
137
+ };
138
+ };
139
+ BITAND: {
140
+ description: string;
141
+ abstract: string;
142
+ links: {
143
+ title: string;
144
+ url: string;
145
+ }[];
146
+ functionParameter: {
147
+ number1: {
148
+ name: string;
149
+ detail: string;
150
+ };
151
+ number2: {
152
+ name: string;
153
+ detail: string;
154
+ };
155
+ };
156
+ };
157
+ BITLSHIFT: {
158
+ description: string;
159
+ abstract: string;
160
+ links: {
161
+ title: string;
162
+ url: string;
163
+ }[];
164
+ functionParameter: {
165
+ number: {
166
+ name: string;
167
+ detail: string;
168
+ };
169
+ shiftAmount: {
170
+ name: string;
171
+ detail: string;
172
+ };
173
+ };
174
+ };
175
+ BITOR: {
176
+ description: string;
177
+ abstract: string;
178
+ links: {
179
+ title: string;
180
+ url: string;
181
+ }[];
182
+ functionParameter: {
183
+ number1: {
184
+ name: string;
185
+ detail: string;
186
+ };
187
+ number2: {
188
+ name: string;
189
+ detail: string;
190
+ };
191
+ };
192
+ };
193
+ BITRSHIFT: {
194
+ description: string;
195
+ abstract: string;
196
+ links: {
197
+ title: string;
198
+ url: string;
199
+ }[];
200
+ functionParameter: {
201
+ number: {
202
+ name: string;
203
+ detail: string;
204
+ };
205
+ shiftAmount: {
206
+ name: string;
207
+ detail: string;
208
+ };
209
+ };
210
+ };
211
+ BITXOR: {
212
+ description: string;
213
+ abstract: string;
214
+ links: {
215
+ title: string;
216
+ url: string;
217
+ }[];
218
+ functionParameter: {
219
+ number1: {
220
+ name: string;
221
+ detail: string;
222
+ };
223
+ number2: {
224
+ name: string;
225
+ detail: string;
226
+ };
227
+ };
228
+ };
229
+ COMPLEX: {
230
+ description: string;
231
+ abstract: string;
232
+ links: {
233
+ title: string;
234
+ url: string;
235
+ }[];
236
+ functionParameter: {
237
+ realNum: {
238
+ name: string;
239
+ detail: string;
240
+ };
241
+ iNum: {
242
+ name: string;
243
+ detail: string;
244
+ };
245
+ suffix: {
246
+ name: string;
247
+ detail: string;
248
+ };
249
+ };
250
+ };
251
+ CONVERT: {
252
+ description: string;
253
+ abstract: string;
254
+ links: {
255
+ title: string;
256
+ url: string;
257
+ }[];
258
+ functionParameter: {
259
+ number: {
260
+ name: string;
261
+ detail: string;
262
+ };
263
+ fromUnit: {
264
+ name: string;
265
+ detail: string;
266
+ };
267
+ toUnit: {
268
+ name: string;
269
+ detail: string;
270
+ };
271
+ };
272
+ };
273
+ DEC2BIN: {
274
+ description: string;
275
+ abstract: string;
276
+ links: {
277
+ title: string;
278
+ url: string;
279
+ }[];
280
+ functionParameter: {
281
+ number: {
282
+ name: string;
283
+ detail: string;
284
+ };
285
+ places: {
286
+ name: string;
287
+ detail: string;
288
+ };
289
+ };
290
+ };
291
+ DEC2HEX: {
292
+ description: string;
293
+ abstract: string;
294
+ links: {
295
+ title: string;
296
+ url: string;
297
+ }[];
298
+ functionParameter: {
299
+ number: {
300
+ name: string;
301
+ detail: string;
302
+ };
303
+ places: {
304
+ name: string;
305
+ detail: string;
306
+ };
307
+ };
308
+ };
309
+ DEC2OCT: {
310
+ description: string;
311
+ abstract: string;
312
+ links: {
313
+ title: string;
314
+ url: string;
315
+ }[];
316
+ functionParameter: {
317
+ number: {
318
+ name: string;
319
+ detail: string;
320
+ };
321
+ places: {
322
+ name: string;
323
+ detail: string;
324
+ };
325
+ };
326
+ };
327
+ DELTA: {
328
+ description: string;
329
+ abstract: string;
330
+ links: {
331
+ title: string;
332
+ url: string;
333
+ }[];
334
+ functionParameter: {
335
+ number1: {
336
+ name: string;
337
+ detail: string;
338
+ };
339
+ number2: {
340
+ name: string;
341
+ detail: string;
342
+ };
343
+ };
344
+ };
345
+ ERF: {
346
+ description: string;
347
+ abstract: string;
348
+ links: {
349
+ title: string;
350
+ url: string;
351
+ }[];
352
+ functionParameter: {
353
+ lowerLimit: {
354
+ name: string;
355
+ detail: string;
356
+ };
357
+ upperLimit: {
358
+ name: string;
359
+ detail: string;
360
+ };
361
+ };
362
+ };
363
+ ERF_PRECISE: {
364
+ description: string;
365
+ abstract: string;
366
+ links: {
367
+ title: string;
368
+ url: string;
369
+ }[];
370
+ functionParameter: {
371
+ x: {
372
+ name: string;
373
+ detail: string;
374
+ };
375
+ };
376
+ };
377
+ ERFC: {
378
+ description: string;
379
+ abstract: string;
380
+ links: {
381
+ title: string;
382
+ url: string;
383
+ }[];
384
+ functionParameter: {
385
+ x: {
386
+ name: string;
387
+ detail: string;
388
+ };
389
+ };
390
+ };
391
+ ERFC_PRECISE: {
392
+ description: string;
393
+ abstract: string;
394
+ links: {
395
+ title: string;
396
+ url: string;
397
+ }[];
398
+ functionParameter: {
399
+ x: {
400
+ name: string;
401
+ detail: string;
402
+ };
403
+ };
404
+ };
405
+ GESTEP: {
406
+ description: string;
407
+ abstract: string;
408
+ links: {
409
+ title: string;
410
+ url: string;
411
+ }[];
412
+ functionParameter: {
413
+ number: {
414
+ name: string;
415
+ detail: string;
416
+ };
417
+ step: {
418
+ name: string;
419
+ detail: string;
420
+ };
421
+ };
422
+ };
423
+ HEX2BIN: {
424
+ description: string;
425
+ abstract: string;
426
+ links: {
427
+ title: string;
428
+ url: string;
429
+ }[];
430
+ functionParameter: {
431
+ number: {
432
+ name: string;
433
+ detail: string;
434
+ };
435
+ places: {
436
+ name: string;
437
+ detail: string;
438
+ };
439
+ };
440
+ };
441
+ HEX2DEC: {
442
+ description: string;
443
+ abstract: string;
444
+ links: {
445
+ title: string;
446
+ url: string;
447
+ }[];
448
+ functionParameter: {
449
+ number: {
450
+ name: string;
451
+ detail: string;
452
+ };
453
+ };
454
+ };
455
+ HEX2OCT: {
456
+ description: string;
457
+ abstract: string;
458
+ links: {
459
+ title: string;
460
+ url: string;
461
+ }[];
462
+ functionParameter: {
463
+ number: {
464
+ name: string;
465
+ detail: string;
466
+ };
467
+ places: {
468
+ name: string;
469
+ detail: string;
470
+ };
471
+ };
472
+ };
473
+ IMABS: {
474
+ description: string;
475
+ abstract: string;
476
+ links: {
477
+ title: string;
478
+ url: string;
479
+ }[];
480
+ functionParameter: {
481
+ inumber: {
482
+ name: string;
483
+ detail: string;
484
+ };
485
+ };
486
+ };
487
+ IMAGINARY: {
488
+ description: string;
489
+ abstract: string;
490
+ links: {
491
+ title: string;
492
+ url: string;
493
+ }[];
494
+ functionParameter: {
495
+ inumber: {
496
+ name: string;
497
+ detail: string;
498
+ };
499
+ };
500
+ };
501
+ IMARGUMENT: {
502
+ description: string;
503
+ abstract: string;
504
+ links: {
505
+ title: string;
506
+ url: string;
507
+ }[];
508
+ functionParameter: {
509
+ inumber: {
510
+ name: string;
511
+ detail: string;
512
+ };
513
+ };
514
+ };
515
+ IMCONJUGATE: {
516
+ description: string;
517
+ abstract: string;
518
+ links: {
519
+ title: string;
520
+ url: string;
521
+ }[];
522
+ functionParameter: {
523
+ inumber: {
524
+ name: string;
525
+ detail: string;
526
+ };
527
+ };
528
+ };
529
+ IMCOS: {
530
+ description: string;
531
+ abstract: string;
532
+ links: {
533
+ title: string;
534
+ url: string;
535
+ }[];
536
+ functionParameter: {
537
+ inumber: {
538
+ name: string;
539
+ detail: string;
540
+ };
541
+ };
542
+ };
543
+ IMCOSH: {
544
+ description: string;
545
+ abstract: string;
546
+ links: {
547
+ title: string;
548
+ url: string;
549
+ }[];
550
+ functionParameter: {
551
+ inumber: {
552
+ name: string;
553
+ detail: string;
554
+ };
555
+ };
556
+ };
557
+ IMCOT: {
558
+ description: string;
559
+ abstract: string;
560
+ links: {
561
+ title: string;
562
+ url: string;
563
+ }[];
564
+ functionParameter: {
565
+ inumber: {
566
+ name: string;
567
+ detail: string;
568
+ };
569
+ };
570
+ };
571
+ IMCSC: {
572
+ description: string;
573
+ abstract: string;
574
+ links: {
575
+ title: string;
576
+ url: string;
577
+ }[];
578
+ functionParameter: {
579
+ inumber: {
580
+ name: string;
581
+ detail: string;
582
+ };
583
+ };
584
+ };
585
+ IMCSCH: {
586
+ description: string;
587
+ abstract: string;
588
+ links: {
589
+ title: string;
590
+ url: string;
591
+ }[];
592
+ functionParameter: {
593
+ inumber: {
594
+ name: string;
595
+ detail: string;
596
+ };
597
+ };
598
+ };
599
+ IMDIV: {
600
+ description: string;
601
+ abstract: string;
602
+ links: {
603
+ title: string;
604
+ url: string;
605
+ }[];
606
+ functionParameter: {
607
+ inumber1: {
608
+ name: string;
609
+ detail: string;
610
+ };
611
+ inumber2: {
612
+ name: string;
613
+ detail: string;
614
+ };
615
+ };
616
+ };
617
+ IMEXP: {
618
+ description: string;
619
+ abstract: string;
620
+ links: {
621
+ title: string;
622
+ url: string;
623
+ }[];
624
+ functionParameter: {
625
+ inumber: {
626
+ name: string;
627
+ detail: string;
628
+ };
629
+ };
630
+ };
631
+ IMLN: {
632
+ description: string;
633
+ abstract: string;
634
+ links: {
635
+ title: string;
636
+ url: string;
637
+ }[];
638
+ functionParameter: {
639
+ inumber: {
640
+ name: string;
641
+ detail: string;
642
+ };
643
+ };
644
+ };
645
+ IMLOG10: {
646
+ description: string;
647
+ abstract: string;
648
+ links: {
649
+ title: string;
650
+ url: string;
651
+ }[];
652
+ functionParameter: {
653
+ inumber: {
654
+ name: string;
655
+ detail: string;
656
+ };
657
+ };
658
+ };
659
+ IMLOG2: {
660
+ description: string;
661
+ abstract: string;
662
+ links: {
663
+ title: string;
664
+ url: string;
665
+ }[];
666
+ functionParameter: {
667
+ inumber: {
668
+ name: string;
669
+ detail: string;
670
+ };
671
+ };
672
+ };
673
+ IMPOWER: {
674
+ description: string;
675
+ abstract: string;
676
+ links: {
677
+ title: string;
678
+ url: string;
679
+ }[];
680
+ functionParameter: {
681
+ inumber: {
682
+ name: string;
683
+ detail: string;
684
+ };
685
+ number: {
686
+ name: string;
687
+ detail: string;
688
+ };
689
+ };
690
+ };
691
+ IMPRODUCT: {
692
+ description: string;
693
+ abstract: string;
694
+ links: {
695
+ title: string;
696
+ url: string;
697
+ }[];
698
+ functionParameter: {
699
+ inumber1: {
700
+ name: string;
701
+ detail: string;
702
+ };
703
+ inumber2: {
704
+ name: string;
705
+ detail: string;
706
+ };
707
+ };
708
+ };
709
+ IMREAL: {
710
+ description: string;
711
+ abstract: string;
712
+ links: {
713
+ title: string;
714
+ url: string;
715
+ }[];
716
+ functionParameter: {
717
+ inumber: {
718
+ name: string;
719
+ detail: string;
720
+ };
721
+ };
722
+ };
723
+ IMSEC: {
724
+ description: string;
725
+ abstract: string;
726
+ links: {
727
+ title: string;
728
+ url: string;
729
+ }[];
730
+ functionParameter: {
731
+ inumber: {
732
+ name: string;
733
+ detail: string;
734
+ };
735
+ };
736
+ };
737
+ IMSECH: {
738
+ description: string;
739
+ abstract: string;
740
+ links: {
741
+ title: string;
742
+ url: string;
743
+ }[];
744
+ functionParameter: {
745
+ inumber: {
746
+ name: string;
747
+ detail: string;
748
+ };
749
+ };
750
+ };
751
+ IMSIN: {
752
+ description: string;
753
+ abstract: string;
754
+ links: {
755
+ title: string;
756
+ url: string;
757
+ }[];
758
+ functionParameter: {
759
+ inumber: {
760
+ name: string;
761
+ detail: string;
762
+ };
763
+ };
764
+ };
765
+ IMSINH: {
766
+ description: string;
767
+ abstract: string;
768
+ links: {
769
+ title: string;
770
+ url: string;
771
+ }[];
772
+ functionParameter: {
773
+ inumber: {
774
+ name: string;
775
+ detail: string;
776
+ };
777
+ };
778
+ };
779
+ IMSQRT: {
780
+ description: string;
781
+ abstract: string;
782
+ links: {
783
+ title: string;
784
+ url: string;
785
+ }[];
786
+ functionParameter: {
787
+ inumber: {
788
+ name: string;
789
+ detail: string;
790
+ };
791
+ };
792
+ };
793
+ IMSUB: {
794
+ description: string;
795
+ abstract: string;
796
+ links: {
797
+ title: string;
798
+ url: string;
799
+ }[];
800
+ functionParameter: {
801
+ inumber1: {
802
+ name: string;
803
+ detail: string;
804
+ };
805
+ inumber2: {
806
+ name: string;
807
+ detail: string;
808
+ };
809
+ };
810
+ };
811
+ IMSUM: {
812
+ description: string;
813
+ abstract: string;
814
+ links: {
815
+ title: string;
816
+ url: string;
817
+ }[];
818
+ functionParameter: {
819
+ inumber1: {
820
+ name: string;
821
+ detail: string;
822
+ };
823
+ inumber2: {
824
+ name: string;
825
+ detail: string;
826
+ };
827
+ };
828
+ };
829
+ IMTAN: {
830
+ description: string;
831
+ abstract: string;
832
+ links: {
833
+ title: string;
834
+ url: string;
835
+ }[];
836
+ functionParameter: {
837
+ inumber: {
838
+ name: string;
839
+ detail: string;
840
+ };
841
+ };
842
+ };
843
+ OCT2BIN: {
844
+ description: string;
845
+ abstract: string;
846
+ links: {
847
+ title: string;
848
+ url: string;
849
+ }[];
850
+ functionParameter: {
851
+ number: {
852
+ name: string;
853
+ detail: string;
854
+ };
855
+ places: {
856
+ name: string;
857
+ detail: string;
858
+ };
859
+ };
860
+ };
861
+ OCT2DEC: {
862
+ description: string;
863
+ abstract: string;
864
+ links: {
865
+ title: string;
866
+ url: string;
867
+ }[];
868
+ functionParameter: {
869
+ number: {
870
+ name: string;
871
+ detail: string;
872
+ };
873
+ };
874
+ };
875
+ OCT2HEX: {
876
+ description: string;
877
+ abstract: string;
878
+ links: {
879
+ title: string;
880
+ url: string;
881
+ }[];
882
+ functionParameter: {
883
+ number: {
884
+ name: string;
885
+ detail: string;
886
+ };
887
+ places: {
888
+ name: string;
889
+ detail: string;
890
+ };
891
+ };
892
+ };
893
+ };
894
+ export default _default;