@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
@@ -1,3 +1,2 @@
1
1
  import { default as enUS } from './en-US';
2
-
3
2
  export default enUS;
@@ -1,3 +1,2 @@
1
1
  import { default as enUS } from './en-US';
2
-
3
2
  export default enUS;
@@ -1,3 +1,2 @@
1
1
  import { default as enUS } from './en-US';
2
-
3
2
  export default enUS;
@@ -44,11 +44,15 @@ declare const _default: {
44
44
  url: string;
45
45
  }[];
46
46
  functionParameter: {
47
- number1: {
47
+ startDate: {
48
+ name: string;
49
+ detail: string;
50
+ };
51
+ endDate: {
48
52
  name: string;
49
53
  detail: string;
50
54
  };
51
- number2: {
55
+ method: {
52
56
  name: string;
53
57
  detail: string;
54
58
  };
@@ -90,11 +94,11 @@ declare const _default: {
90
94
  url: string;
91
95
  }[];
92
96
  functionParameter: {
93
- number1: {
97
+ endDate: {
94
98
  name: string;
95
99
  detail: string;
96
100
  };
97
- number2: {
101
+ startDate: {
98
102
  name: string;
99
103
  detail: string;
100
104
  };
@@ -108,11 +112,15 @@ declare const _default: {
108
112
  url: string;
109
113
  }[];
110
114
  functionParameter: {
111
- number1: {
115
+ startDate: {
116
+ name: string;
117
+ detail: string;
118
+ };
119
+ endDate: {
112
120
  name: string;
113
121
  detail: string;
114
122
  };
115
- number2: {
123
+ method: {
116
124
  name: string;
117
125
  detail: string;
118
126
  };
@@ -144,11 +152,11 @@ declare const _default: {
144
152
  url: string;
145
153
  }[];
146
154
  functionParameter: {
147
- number1: {
155
+ startDate: {
148
156
  name: string;
149
157
  detail: string;
150
158
  };
151
- number2: {
159
+ months: {
152
160
  name: string;
153
161
  detail: string;
154
162
  };
@@ -162,11 +170,21 @@ declare const _default: {
162
170
  url: string;
163
171
  }[];
164
172
  functionParameter: {
165
- number1: {
173
+ serialNumber: {
166
174
  name: string;
167
175
  detail: string;
168
176
  };
169
- number2: {
177
+ };
178
+ };
179
+ ISOWEEKNUM: {
180
+ description: string;
181
+ abstract: string;
182
+ links: {
183
+ title: string;
184
+ url: string;
185
+ }[];
186
+ functionParameter: {
187
+ date: {
170
188
  name: string;
171
189
  detail: string;
172
190
  };
@@ -180,11 +198,7 @@ declare const _default: {
180
198
  url: string;
181
199
  }[];
182
200
  functionParameter: {
183
- number1: {
184
- name: string;
185
- detail: string;
186
- };
187
- number2: {
201
+ serialNumber: {
188
202
  name: string;
189
203
  detail: string;
190
204
  };
@@ -212,17 +226,21 @@ declare const _default: {
212
226
  url: string;
213
227
  }[];
214
228
  functionParameter: {
215
- number1: {
229
+ startDate: {
230
+ name: string;
231
+ detail: string;
232
+ };
233
+ endDate: {
216
234
  name: string;
217
235
  detail: string;
218
236
  };
219
- number2: {
237
+ holidays: {
220
238
  name: string;
221
239
  detail: string;
222
240
  };
223
241
  };
224
242
  };
225
- SECOND: {
243
+ NETWORKDAYS_INTL: {
226
244
  description: string;
227
245
  abstract: string;
228
246
  links: {
@@ -230,11 +248,42 @@ declare const _default: {
230
248
  url: string;
231
249
  }[];
232
250
  functionParameter: {
233
- number1: {
251
+ startDate: {
234
252
  name: string;
235
253
  detail: string;
236
254
  };
237
- number2: {
255
+ endDate: {
256
+ name: string;
257
+ detail: string;
258
+ };
259
+ weekend: {
260
+ name: string;
261
+ detail: string;
262
+ };
263
+ holidays: {
264
+ name: string;
265
+ detail: string;
266
+ };
267
+ };
268
+ };
269
+ NOW: {
270
+ description: string;
271
+ abstract: string;
272
+ links: {
273
+ title: string;
274
+ url: string;
275
+ }[];
276
+ functionParameter: {};
277
+ };
278
+ SECOND: {
279
+ description: string;
280
+ abstract: string;
281
+ links: {
282
+ title: string;
283
+ url: string;
284
+ }[];
285
+ functionParameter: {
286
+ serialNumber: {
238
287
  name: string;
239
288
  detail: string;
240
289
  };
@@ -248,11 +297,15 @@ declare const _default: {
248
297
  url: string;
249
298
  }[];
250
299
  functionParameter: {
251
- number1: {
300
+ hour: {
252
301
  name: string;
253
302
  detail: string;
254
303
  };
255
- number2: {
304
+ minute: {
305
+ name: string;
306
+ detail: string;
307
+ };
308
+ second: {
256
309
  name: string;
257
310
  detail: string;
258
311
  };
@@ -289,11 +342,11 @@ declare const _default: {
289
342
  url: string;
290
343
  }[];
291
344
  functionParameter: {
292
- number1: {
345
+ serialNumber: {
293
346
  name: string;
294
347
  detail: string;
295
348
  };
296
- number2: {
349
+ returnType: {
297
350
  name: string;
298
351
  detail: string;
299
352
  };
@@ -307,11 +360,11 @@ declare const _default: {
307
360
  url: string;
308
361
  }[];
309
362
  functionParameter: {
310
- number1: {
363
+ serialNumber: {
311
364
  name: string;
312
365
  detail: string;
313
366
  };
314
- number2: {
367
+ returnType: {
315
368
  name: string;
316
369
  detail: string;
317
370
  };
@@ -339,6 +392,32 @@ declare const _default: {
339
392
  };
340
393
  };
341
394
  };
395
+ WORKDAY_INTL: {
396
+ description: string;
397
+ abstract: string;
398
+ links: {
399
+ title: string;
400
+ url: string;
401
+ }[];
402
+ functionParameter: {
403
+ startDate: {
404
+ name: string;
405
+ detail: string;
406
+ };
407
+ days: {
408
+ name: string;
409
+ detail: string;
410
+ };
411
+ weekend: {
412
+ name: string;
413
+ detail: string;
414
+ };
415
+ holidays: {
416
+ name: string;
417
+ detail: string;
418
+ };
419
+ };
420
+ };
342
421
  YEAR: {
343
422
  description: string;
344
423
  abstract: string;
@@ -226,11 +226,15 @@ declare const _default: {
226
226
  url: string;
227
227
  }[];
228
228
  functionParameter: {
229
- number1: {
229
+ startDate: {
230
+ name: string;
231
+ detail: string;
232
+ };
233
+ endDate: {
230
234
  name: string;
231
235
  detail: string;
232
236
  };
233
- number2: {
237
+ holidays: {
234
238
  name: string;
235
239
  detail: string;
236
240
  };
@@ -244,11 +248,19 @@ declare const _default: {
244
248
  url: string;
245
249
  }[];
246
250
  functionParameter: {
247
- number1: {
251
+ startDate: {
252
+ name: string;
253
+ detail: string;
254
+ };
255
+ endDate: {
256
+ name: string;
257
+ detail: string;
258
+ };
259
+ weekend: {
248
260
  name: string;
249
261
  detail: string;
250
262
  };
251
- number2: {
263
+ holidays: {
252
264
  name: string;
253
265
  detail: string;
254
266
  };
@@ -366,11 +378,15 @@ declare const _default: {
366
378
  url: string;
367
379
  }[];
368
380
  functionParameter: {
369
- number1: {
381
+ startDate: {
382
+ name: string;
383
+ detail: string;
384
+ };
385
+ days: {
370
386
  name: string;
371
387
  detail: string;
372
388
  };
373
- number2: {
389
+ holidays: {
374
390
  name: string;
375
391
  detail: string;
376
392
  };
@@ -384,11 +400,19 @@ declare const _default: {
384
400
  url: string;
385
401
  }[];
386
402
  functionParameter: {
387
- number1: {
403
+ startDate: {
404
+ name: string;
405
+ detail: string;
406
+ };
407
+ days: {
408
+ name: string;
409
+ detail: string;
410
+ };
411
+ weekend: {
388
412
  name: string;
389
413
  detail: string;
390
414
  };
391
- number2: {
415
+ holidays: {
392
416
  name: string;
393
417
  detail: string;
394
418
  };
@@ -22,11 +22,11 @@ declare const _default: {
22
22
  url: string;
23
23
  }[];
24
24
  functionParameter: {
25
- number1: {
25
+ x: {
26
26
  name: string;
27
27
  detail: string;
28
28
  };
29
- number2: {
29
+ n: {
30
30
  name: string;
31
31
  detail: string;
32
32
  };
@@ -40,11 +40,11 @@ declare const _default: {
40
40
  url: string;
41
41
  }[];
42
42
  functionParameter: {
43
- number1: {
43
+ x: {
44
44
  name: string;
45
45
  detail: string;
46
46
  };
47
- number2: {
47
+ n: {
48
48
  name: string;
49
49
  detail: string;
50
50
  };
@@ -58,11 +58,11 @@ declare const _default: {
58
58
  url: string;
59
59
  }[];
60
60
  functionParameter: {
61
- number1: {
61
+ x: {
62
62
  name: string;
63
63
  detail: string;
64
64
  };
65
- number2: {
65
+ n: {
66
66
  name: string;
67
67
  detail: string;
68
68
  };
@@ -76,11 +76,11 @@ declare const _default: {
76
76
  url: string;
77
77
  }[];
78
78
  functionParameter: {
79
- number1: {
79
+ x: {
80
80
  name: string;
81
81
  detail: string;
82
82
  };
83
- number2: {
83
+ n: {
84
84
  name: string;
85
85
  detail: string;
86
86
  };
@@ -94,11 +94,7 @@ declare const _default: {
94
94
  url: string;
95
95
  }[];
96
96
  functionParameter: {
97
- number1: {
98
- name: string;
99
- detail: string;
100
- };
101
- number2: {
97
+ number: {
102
98
  name: string;
103
99
  detail: string;
104
100
  };
@@ -112,11 +108,11 @@ declare const _default: {
112
108
  url: string;
113
109
  }[];
114
110
  functionParameter: {
115
- number1: {
111
+ number: {
116
112
  name: string;
117
113
  detail: string;
118
114
  };
119
- number2: {
115
+ places: {
120
116
  name: string;
121
117
  detail: string;
122
118
  };
@@ -130,11 +126,11 @@ declare const _default: {
130
126
  url: string;
131
127
  }[];
132
128
  functionParameter: {
133
- number1: {
129
+ number: {
134
130
  name: string;
135
131
  detail: string;
136
132
  };
137
- number2: {
133
+ places: {
138
134
  name: string;
139
135
  detail: string;
140
136
  };
@@ -166,11 +162,11 @@ declare const _default: {
166
162
  url: string;
167
163
  }[];
168
164
  functionParameter: {
169
- number1: {
165
+ number: {
170
166
  name: string;
171
167
  detail: string;
172
168
  };
173
- number2: {
169
+ shiftAmount: {
174
170
  name: string;
175
171
  detail: string;
176
172
  };
@@ -202,11 +198,11 @@ declare const _default: {
202
198
  url: string;
203
199
  }[];
204
200
  functionParameter: {
205
- number1: {
201
+ number: {
206
202
  name: string;
207
203
  detail: string;
208
204
  };
209
- number2: {
205
+ shiftAmount: {
210
206
  name: string;
211
207
  detail: string;
212
208
  };
@@ -238,11 +234,15 @@ declare const _default: {
238
234
  url: string;
239
235
  }[];
240
236
  functionParameter: {
241
- number1: {
237
+ realNum: {
242
238
  name: string;
243
239
  detail: string;
244
240
  };
245
- number2: {
241
+ iNum: {
242
+ name: string;
243
+ detail: string;
244
+ };
245
+ suffix: {
246
246
  name: string;
247
247
  detail: string;
248
248
  };
@@ -256,11 +256,15 @@ declare const _default: {
256
256
  url: string;
257
257
  }[];
258
258
  functionParameter: {
259
- number1: {
259
+ number: {
260
260
  name: string;
261
261
  detail: string;
262
262
  };
263
- number2: {
263
+ fromUnit: {
264
+ name: string;
265
+ detail: string;
266
+ };
267
+ toUnit: {
264
268
  name: string;
265
269
  detail: string;
266
270
  };
@@ -274,11 +278,11 @@ declare const _default: {
274
278
  url: string;
275
279
  }[];
276
280
  functionParameter: {
277
- number1: {
281
+ number: {
278
282
  name: string;
279
283
  detail: string;
280
284
  };
281
- number2: {
285
+ places: {
282
286
  name: string;
283
287
  detail: string;
284
288
  };
@@ -292,11 +296,11 @@ declare const _default: {
292
296
  url: string;
293
297
  }[];
294
298
  functionParameter: {
295
- number1: {
299
+ number: {
296
300
  name: string;
297
301
  detail: string;
298
302
  };
299
- number2: {
303
+ places: {
300
304
  name: string;
301
305
  detail: string;
302
306
  };
@@ -310,11 +314,11 @@ declare const _default: {
310
314
  url: string;
311
315
  }[];
312
316
  functionParameter: {
313
- number1: {
317
+ number: {
314
318
  name: string;
315
319
  detail: string;
316
320
  };
317
- number2: {
321
+ places: {
318
322
  name: string;
319
323
  detail: string;
320
324
  };
@@ -346,11 +350,11 @@ declare const _default: {
346
350
  url: string;
347
351
  }[];
348
352
  functionParameter: {
349
- number1: {
353
+ lowerLimit: {
350
354
  name: string;
351
355
  detail: string;
352
356
  };
353
- number2: {
357
+ upperLimit: {
354
358
  name: string;
355
359
  detail: string;
356
360
  };
@@ -364,11 +368,7 @@ declare const _default: {
364
368
  url: string;
365
369
  }[];
366
370
  functionParameter: {
367
- number1: {
368
- name: string;
369
- detail: string;
370
- };
371
- number2: {
371
+ x: {
372
372
  name: string;
373
373
  detail: string;
374
374
  };
@@ -382,11 +382,7 @@ declare const _default: {
382
382
  url: string;
383
383
  }[];
384
384
  functionParameter: {
385
- number1: {
386
- name: string;
387
- detail: string;
388
- };
389
- number2: {
385
+ x: {
390
386
  name: string;
391
387
  detail: string;
392
388
  };
@@ -400,11 +396,7 @@ declare const _default: {
400
396
  url: string;
401
397
  }[];
402
398
  functionParameter: {
403
- number1: {
404
- name: string;
405
- detail: string;
406
- };
407
- number2: {
399
+ x: {
408
400
  name: string;
409
401
  detail: string;
410
402
  };
@@ -436,11 +428,11 @@ declare const _default: {
436
428
  url: string;
437
429
  }[];
438
430
  functionParameter: {
439
- number1: {
431
+ number: {
440
432
  name: string;
441
433
  detail: string;
442
434
  };
443
- number2: {
435
+ places: {
444
436
  name: string;
445
437
  detail: string;
446
438
  };
@@ -454,11 +446,7 @@ declare const _default: {
454
446
  url: string;
455
447
  }[];
456
448
  functionParameter: {
457
- number1: {
458
- name: string;
459
- detail: string;
460
- };
461
- number2: {
449
+ number: {
462
450
  name: string;
463
451
  detail: string;
464
452
  };
@@ -472,11 +460,11 @@ declare const _default: {
472
460
  url: string;
473
461
  }[];
474
462
  functionParameter: {
475
- number1: {
463
+ number: {
476
464
  name: string;
477
465
  detail: string;
478
466
  };
479
- number2: {
467
+ places: {
480
468
  name: string;
481
469
  detail: string;
482
470
  };
@@ -940,11 +928,11 @@ declare const _default: {
940
928
  url: string;
941
929
  }[];
942
930
  functionParameter: {
943
- number1: {
931
+ number: {
944
932
  name: string;
945
933
  detail: string;
946
934
  };
947
- number2: {
935
+ places: {
948
936
  name: string;
949
937
  detail: string;
950
938
  };
@@ -958,11 +946,7 @@ declare const _default: {
958
946
  url: string;
959
947
  }[];
960
948
  functionParameter: {
961
- number1: {
962
- name: string;
963
- detail: string;
964
- };
965
- number2: {
949
+ number: {
966
950
  name: string;
967
951
  detail: string;
968
952
  };
@@ -976,11 +960,11 @@ declare const _default: {
976
960
  url: string;
977
961
  }[];
978
962
  functionParameter: {
979
- number1: {
963
+ number: {
980
964
  name: string;
981
965
  detail: string;
982
966
  };
983
- number2: {
967
+ places: {
984
968
  name: string;
985
969
  detail: string;
986
970
  };