@dcloudio/uni-app-x 0.7.22 → 0.7.24

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 (42) hide show
  1. package/package.json +1 -1
  2. package/types/app.d.ts +16 -16
  3. package/types/native/CanvasRenderingContext2D.d.ts +1697 -111
  4. package/types/native/IUniElement.d.ts +73 -4
  5. package/types/native/Path2D.d.ts +41 -13
  6. package/types/native/UniProvider.d.ts +17 -0
  7. package/types/native/UniVideoElement.d.ts +13 -5
  8. package/types/native/global.d.ts +18 -0
  9. package/types/uni/uts-plugin-api/global.d.ts +1 -1
  10. package/types/uni/uts-plugin-api/index.d.ts +1 -1
  11. package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/interface.d.ts +14 -4
  12. package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/global.d.ts +2 -2
  13. package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/index.d.ts +1 -1
  14. package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/interface.d.ts +2 -2
  15. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/interface.d.ts +78 -14
  16. package/types/uni/uts-plugin-api/lib/uni-exit/utssdk/interface.d.ts +9 -3
  17. package/types/uni/uts-plugin-api/lib/uni-fileSystemManager/utssdk/interface.d.ts +56 -15
  18. package/types/uni/uts-plugin-api/lib/uni-getAppAuthorizeSetting/utssdk/interface.d.ts +191 -65
  19. package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +3 -3
  20. package/types/uni/uts-plugin-api/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +7 -7
  21. package/types/uni/uts-plugin-api/lib/uni-getLocation/utssdk/interface.d.ts +614 -169
  22. package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/global.d.ts +12 -6
  23. package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/index.d.ts +6 -3
  24. package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/interface.d.ts +249 -103
  25. package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/interface.d.ts +9 -2
  26. package/types/uni/uts-plugin-api/lib/uni-getSystemSetting/utssdk/interface.d.ts +49 -11
  27. package/types/uni/uts-plugin-api/lib/uni-loadFontFace/utssdk/interface.d.ts +33 -16
  28. package/types/uni/uts-plugin-api/lib/uni-media/utssdk/interface.d.ts +80 -33
  29. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +63 -17
  30. package/types/uni/uts-plugin-api/lib/uni-payment/utssdk/interface.d.ts +307 -20
  31. package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts +213 -21
  32. package/types/uni/uts-plugin-api/lib/uni-route/utssdk/interface.d.ts +554 -24
  33. package/types/uni/uts-plugin-api/lib/uni-shareWithSystem/utssdk/global.d.ts +22 -0
  34. package/types/uni/uts-plugin-api/lib/uni-shareWithSystem/utssdk/index.d.ts +10 -0
  35. package/types/uni/uts-plugin-api/lib/uni-shareWithSystem/utssdk/interface.d.ts +120 -0
  36. package/types/uni/uts-plugin-api/lib/uni-tabBar/utssdk/interface.d.ts +28 -8
  37. package/types/uni/uts-plugin-api/lib/uni-virtualPayment/utssdk/interface.d.ts +766 -364
  38. package/types/uni/uts-plugin-api/lib/uni-websocket/utssdk/interface.d.ts +14 -4
  39. package/types/uni-cloud/unicloud-db/index.ts +8 -5
  40. package/types/uni/uts-plugin-api/lib/uni-animationFrame/utssdk/global.d.ts +0 -12
  41. package/types/uni/uts-plugin-api/lib/uni-animationFrame/utssdk/index.d.ts +0 -5
  42. package/types/uni/uts-plugin-api/lib/uni-animationFrame/utssdk/interface.d.ts +0 -50
@@ -89,17 +89,7 @@ export type NavigateToOptions = {
89
89
  url: string | string.PageURIString
90
90
  /**
91
91
  * 窗口显示的动画类型
92
- * - auto: 自动选择动画效果
93
- * - none: 无动画效果
94
- * - slide-in-right: 从右侧横向滑动效果
95
- * - slide-in-left: 左侧横向滑动效果
96
- * - slide-in-top: 从上侧竖向滑动效果
97
- * - slide-in-bottom: 从下侧竖向滑动效果
98
- * - fade-in: 从透明到不透明逐渐显示效果
99
- * - zoom-out: 从小到大逐渐放大显示效果
100
- * - zoom-fade-out: 从小到大逐渐放大并且从透明到不透明逐渐显示效果
101
- * - pop-in: 从右侧平移入栈动画效果
102
- * - UnionType => 'auto' | 'none' | 'slide-in-right' | 'slide-in-left' | 'slide-in-top' | 'slide-in-bottom' | 'fade-in' | 'zoom-out' | 'zoom-fade-out' | 'pop-in'
92
+ *
103
93
  * @uniPlatform {
104
94
  * "app": {
105
95
  * "android": {
@@ -166,7 +156,287 @@ export type NavigateToOptions = {
166
156
  * }
167
157
  * }
168
158
  */
169
- animationType?: string | null
159
+ animationType?:
160
+ /**
161
+ * 自动选择动画效果
162
+ *
163
+ * @uniPlatform {
164
+ * "app": {
165
+ * "android": {
166
+ * "osVer": "5.0",
167
+ * "uniVer": "√",
168
+ * "unixVer": "4.18"
169
+ * },
170
+ * "ios": {
171
+ * "osVer": "12.0",
172
+ * "uniVer": "√",
173
+ * "unixVer": "4.25"
174
+ * },
175
+ * "harmony": {
176
+ * "osVer": "3.0",
177
+ * "uniVer": "x",
178
+ * "unixVer": "x"
179
+ * }
180
+ * },
181
+ * "web": {
182
+ * "uniVer": "x",
183
+ * "unixVer": "x"
184
+ * }
185
+ * }
186
+ */
187
+ 'auto' |
188
+ /**
189
+ * 无动画效果
190
+ *
191
+ * @uniPlatform {
192
+ * "app": {
193
+ * "android": {
194
+ * "osVer": "5.0",
195
+ * "uniVer": "√",
196
+ * "unixVer": "4.18"
197
+ * },
198
+ * "ios": {
199
+ * "osVer": "12.0",
200
+ * "uniVer": "√",
201
+ * "unixVer": "4.25"
202
+ * },
203
+ * "harmony": {
204
+ * "osVer": "3.0",
205
+ * "uniVer": "4.23",
206
+ * "unixVer": "x"
207
+ * }
208
+ * },
209
+ * "web": {
210
+ * "uniVer": "x",
211
+ * "unixVer": "x"
212
+ * }
213
+ * }
214
+ */
215
+ 'none' |
216
+ /**
217
+ * 从右侧横向滑动效果
218
+ *
219
+ * @uniPlatform {
220
+ * "app": {
221
+ * "android": {
222
+ * "osVer": "5.0",
223
+ * "uniVer": "√",
224
+ * "unixVer": "4.18"
225
+ * },
226
+ * "ios": {
227
+ * "osVer": "12.0",
228
+ * "uniVer": "√",
229
+ * "unixVer": "4.25"
230
+ * },
231
+ * "harmony": {
232
+ * "osVer": "3.0",
233
+ * "uniVer": "x",
234
+ * "unixVer": "x"
235
+ * }
236
+ * },
237
+ * "web": {
238
+ * "uniVer": "x",
239
+ * "unixVer": "x"
240
+ * }
241
+ * }
242
+ */
243
+ 'slide-in-right' |
244
+ /**
245
+ * 从左侧横向滑动效果
246
+ *
247
+ * @uniPlatform {
248
+ * "app": {
249
+ * "android": {
250
+ * "osVer": "5.0",
251
+ * "uniVer": "√",
252
+ * "unixVer": "4.18"
253
+ * },
254
+ * "ios": {
255
+ * "osVer": "12.0",
256
+ * "uniVer": "√",
257
+ * "unixVer": "4.25"
258
+ * },
259
+ * "harmony": {
260
+ * "osVer": "3.0",
261
+ * "uniVer": "x",
262
+ * "unixVer": "x"
263
+ * }
264
+ * },
265
+ * "web": {
266
+ * "uniVer": "x",
267
+ * "unixVer": "x"
268
+ * }
269
+ * }
270
+ */
271
+ 'slide-in-left' |
272
+ /**
273
+ * 从上侧竖向滑动效果
274
+ *
275
+ * @uniPlatform {
276
+ * "app": {
277
+ * "android": {
278
+ * "osVer": "5.0",
279
+ * "uniVer": "√",
280
+ * "unixVer": "4.18"
281
+ * },
282
+ * "ios": {
283
+ * "osVer": "12.0",
284
+ * "uniVer": "√",
285
+ * "unixVer": "4.25"
286
+ * },
287
+ * "harmony": {
288
+ * "osVer": "3.0",
289
+ * "uniVer": "x",
290
+ * "unixVer": "x"
291
+ * }
292
+ * },
293
+ * "web": {
294
+ * "uniVer": "x",
295
+ * "unixVer": "x"
296
+ * }
297
+ * }
298
+ */
299
+ 'slide-in-top' |
300
+ /**
301
+ * 从下侧竖向滑动效果
302
+ *
303
+ * @uniPlatform {
304
+ * "app": {
305
+ * "android": {
306
+ * "osVer": "5.0",
307
+ * "uniVer": "√",
308
+ * "unixVer": "4.18"
309
+ * },
310
+ * "ios": {
311
+ * "osVer": "12.0",
312
+ * "uniVer": "√",
313
+ * "unixVer": "4.25"
314
+ * },
315
+ * "harmony": {
316
+ * "osVer": "3.0",
317
+ * "uniVer": "x",
318
+ * "unixVer": "x"
319
+ * }
320
+ * },
321
+ * "web": {
322
+ * "uniVer": "x",
323
+ * "unixVer": "x"
324
+ * }
325
+ * }
326
+ */
327
+ 'slide-in-bottom' |
328
+ /**
329
+ * 从完全透明到不透明逐渐显示
330
+ *
331
+ * @uniPlatform {
332
+ * "app": {
333
+ * "android": {
334
+ * "osVer": "5.0",
335
+ * "uniVer": "√",
336
+ * "unixVer": "4.18"
337
+ * },
338
+ * "ios": {
339
+ * "osVer": "12.0",
340
+ * "uniVer": "√",
341
+ * "unixVer": "4.25"
342
+ * },
343
+ * "harmony": {
344
+ * "osVer": "3.0",
345
+ * "uniVer": "x",
346
+ * "unixVer": "x"
347
+ * }
348
+ * },
349
+ * "web": {
350
+ * "uniVer": "x",
351
+ * "unixVer": "x"
352
+ * }
353
+ * }
354
+ */
355
+ 'fade-in' |
356
+ /**
357
+ * 在屏幕中间从小到大逐渐放大显示
358
+ *
359
+ * @uniPlatform {
360
+ * "app": {
361
+ * "android": {
362
+ * "osVer": "5.0",
363
+ * "uniVer": "√",
364
+ * "unixVer": "4.18"
365
+ * },
366
+ * "ios": {
367
+ * "osVer": "12.0",
368
+ * "uniVer": "√",
369
+ * "unixVer": "4.25"
370
+ * },
371
+ * "harmony": {
372
+ * "osVer": "3.0",
373
+ * "uniVer": "x",
374
+ * "unixVer": "x"
375
+ * }
376
+ * },
377
+ * "web": {
378
+ * "uniVer": "x",
379
+ * "unixVer": "x"
380
+ * }
381
+ * }
382
+ */
383
+ 'zoom-out' |
384
+ /**
385
+ * 从大逐渐缩小并且从不透明到透明逐渐隐藏关闭动画
386
+ *
387
+ * @uniPlatform {
388
+ * "app": {
389
+ * "android": {
390
+ * "osVer": "5.0",
391
+ * "uniVer": "√",
392
+ * "unixVer": "4.18"
393
+ * },
394
+ * "ios": {
395
+ * "osVer": "12.0",
396
+ * "uniVer": "√",
397
+ * "unixVer": "4.25"
398
+ * },
399
+ * "harmony": {
400
+ * "osVer": "3.0",
401
+ * "uniVer": "x",
402
+ * "unixVer": "x"
403
+ * }
404
+ * },
405
+ * "web": {
406
+ * "uniVer": "x",
407
+ * "unixVer": "x"
408
+ * }
409
+ * }
410
+ */
411
+ 'zoom-fade-out' |
412
+ /**
413
+ * 从右侧平移出栈动画效果
414
+ *
415
+ * @uniPlatform {
416
+ * "app": {
417
+ * "android": {
418
+ * "osVer": "5.0",
419
+ * "uniVer": "√",
420
+ * "unixVer": "4.18"
421
+ * },
422
+ * "ios": {
423
+ * "osVer": "12.0",
424
+ * "uniVer": "√",
425
+ * "unixVer": "4.25"
426
+ * },
427
+ * "harmony": {
428
+ * "osVer": "3.0",
429
+ * "uniVer": "x",
430
+ * "unixVer": "x"
431
+ * }
432
+ * },
433
+ * "web": {
434
+ * "uniVer": "x",
435
+ * "unixVer": "x"
436
+ * }
437
+ * }
438
+ */
439
+ 'pop-in' | null
170
440
  /**
171
441
  * 窗口显示动画的持续时间,单位为 ms
172
442
  * @uniPlatform {
@@ -1453,17 +1723,7 @@ export type NavigateBackOptions = {
1453
1723
  delta?: number | null
1454
1724
  /**
1455
1725
  * 窗口关闭的动画类型
1456
- * - auto: 自动选择动画效果
1457
- * - none: 无动画效果
1458
- * - slide-out-right: 横向向右侧滑出屏幕动画
1459
- * - slide-out-left: 横向向左侧滑出屏幕动画
1460
- * - slide-out-top: 竖向向上侧滑出屏幕动画
1461
- * - slide-out-bottom: 竖向向下侧滑出屏幕动画
1462
- * - fade-out: 从不透明到透明逐渐隐藏动画
1463
- * - zoom-in: 从大逐渐缩小关闭动画
1464
- * - zoom-fade-in: 从大逐渐缩小并且从不透明到透明逐渐隐藏关闭动画
1465
- * - pop-out: 从右侧平移出栈动画效果
1466
- * - UnionType => 'auto' | 'none' | 'slide-out-right' | 'slide-out-left' | 'slide-out-top' | 'slide-out-bottom' | 'fade-out' | 'zoom-in' | 'zoom-fade-in' | 'pop-out'
1726
+ *
1467
1727
  * @uniPlatform {
1468
1728
  * "app": {
1469
1729
  * "android": {
@@ -1525,7 +1785,277 @@ export type NavigateBackOptions = {
1525
1785
  * }
1526
1786
  * }
1527
1787
  */
1528
- animationType?: string | null
1788
+ animationType?:
1789
+ /**
1790
+ * 自动选择动画效果
1791
+ * @uniPlatform {
1792
+ * "app": {
1793
+ * "android": {
1794
+ * "osVer": "5.0",
1795
+ * "uniVer": "√",
1796
+ * "unixVer": "4.18"
1797
+ * },
1798
+ * "ios": {
1799
+ * "osVer": "12.0",
1800
+ * "uniVer": "√",
1801
+ * "unixVer": "4.25"
1802
+ * },
1803
+ * "harmony": {
1804
+ * "osVer": "3.0",
1805
+ * "uniVer": "x",
1806
+ * "unixVer": "x"
1807
+ * }
1808
+ * },
1809
+ * "web": {
1810
+ * "uniVer": "x",
1811
+ * "unixVer": "x"
1812
+ * }
1813
+ * }
1814
+ */
1815
+ 'auto' |
1816
+ /**
1817
+ * 无动画效果
1818
+ * @uniPlatform {
1819
+ * "app": {
1820
+ * "android": {
1821
+ * "osVer": "5.0",
1822
+ * "uniVer": "√",
1823
+ * "unixVer": "4.18"
1824
+ * },
1825
+ * "ios": {
1826
+ * "osVer": "12.0",
1827
+ * "uniVer": "√",
1828
+ * "unixVer": "4.25"
1829
+ * },
1830
+ * "harmony": {
1831
+ * "osVer": "3.0",
1832
+ * "uniVer": "4.23",
1833
+ * "unixVer": "x"
1834
+ * }
1835
+ * },
1836
+ * "web": {
1837
+ * "uniVer": "x",
1838
+ * "unixVer": "x"
1839
+ * }
1840
+ * }
1841
+ */
1842
+ 'none' |
1843
+ /**
1844
+ * 横向向右侧滑出屏幕动画
1845
+ * @uniPlatform {
1846
+ * "app": {
1847
+ * "android": {
1848
+ * "osVer": "5.0",
1849
+ * "uniVer": "√",
1850
+ * "unixVer": "4.18"
1851
+ * },
1852
+ * "ios": {
1853
+ * "osVer": "12.0",
1854
+ * "uniVer": "√",
1855
+ * "unixVer": "4.25"
1856
+ * },
1857
+ * "harmony": {
1858
+ * "osVer": "3.0",
1859
+ * "uniVer": "x",
1860
+ * "unixVer": "x"
1861
+ * }
1862
+ * },
1863
+ * "web": {
1864
+ * "uniVer": "x",
1865
+ * "unixVer": "x"
1866
+ * }
1867
+ * }
1868
+ */
1869
+ 'slide-out-right' |
1870
+ /**
1871
+ * 横向向左侧滑出屏幕动画
1872
+ * @uniPlatform {
1873
+ * "app": {
1874
+ * "android": {
1875
+ * "osVer": "5.0",
1876
+ * "uniVer": "√",
1877
+ * "unixVer": "4.18"
1878
+ * },
1879
+ * "ios": {
1880
+ * "osVer": "12.0",
1881
+ * "uniVer": "√",
1882
+ * "unixVer": "4.25"
1883
+ * },
1884
+ * "harmony": {
1885
+ * "osVer": "3.0",
1886
+ * "uniVer": "x",
1887
+ * "unixVer": "x"
1888
+ * }
1889
+ * },
1890
+ * "web": {
1891
+ * "uniVer": "x",
1892
+ * "unixVer": "x"
1893
+ * }
1894
+ * }
1895
+ */
1896
+ 'slide-out-left' |
1897
+ /**
1898
+ * 竖向向上侧滑出屏幕动画
1899
+ * @uniPlatform {
1900
+ * "app": {
1901
+ * "android": {
1902
+ * "osVer": "5.0",
1903
+ * "uniVer": "√",
1904
+ * "unixVer": "4.18"
1905
+ * },
1906
+ * "ios": {
1907
+ * "osVer": "12.0",
1908
+ * "uniVer": "√",
1909
+ * "unixVer": "4.25"
1910
+ * },
1911
+ * "harmony": {
1912
+ * "osVer": "3.0",
1913
+ * "uniVer": "x",
1914
+ * "unixVer": "x"
1915
+ * }
1916
+ * },
1917
+ * "web": {
1918
+ * "uniVer": "x",
1919
+ * "unixVer": "x"
1920
+ * }
1921
+ * }
1922
+ */
1923
+ 'slide-out-top' |
1924
+ /**
1925
+ * 竖向向下侧滑出屏幕动画
1926
+ * @uniPlatform {
1927
+ * "app": {
1928
+ * "android": {
1929
+ * "osVer": "5.0",
1930
+ * "uniVer": "√",
1931
+ * "unixVer": "4.18"
1932
+ * },
1933
+ * "ios": {
1934
+ * "osVer": "12.0",
1935
+ * "uniVer": "√",
1936
+ * "unixVer": "4.25"
1937
+ * },
1938
+ * "harmony": {
1939
+ * "osVer": "3.0",
1940
+ * "uniVer": "x",
1941
+ * "unixVer": "x"
1942
+ * }
1943
+ * },
1944
+ * "web": {
1945
+ * "uniVer": "x",
1946
+ * "unixVer": "x"
1947
+ * }
1948
+ * }
1949
+ */
1950
+ 'slide-out-bottom' |
1951
+ /**
1952
+ * 从不透明到透明逐渐隐藏动画
1953
+ * @uniPlatform {
1954
+ * "app": {
1955
+ * "android": {
1956
+ * "osVer": "5.0",
1957
+ * "uniVer": "√",
1958
+ * "unixVer": "4.18"
1959
+ * },
1960
+ * "ios": {
1961
+ * "osVer": "12.0",
1962
+ * "uniVer": "√",
1963
+ * "unixVer": "4.25"
1964
+ * },
1965
+ * "harmony": {
1966
+ * "osVer": "3.0",
1967
+ * "uniVer": "x",
1968
+ * "unixVer": "x"
1969
+ * }
1970
+ * },
1971
+ * "web": {
1972
+ * "uniVer": "x",
1973
+ * "unixVer": "x"
1974
+ * }
1975
+ * }
1976
+ */
1977
+ 'fade-out' |
1978
+ /**
1979
+ * 从大逐渐缩小关闭动画
1980
+ * @uniPlatform {
1981
+ * "app": {
1982
+ * "android": {
1983
+ * "osVer": "5.0",
1984
+ * "uniVer": "√",
1985
+ * "unixVer": "4.18"
1986
+ * },
1987
+ * "ios": {
1988
+ * "osVer": "12.0",
1989
+ * "uniVer": "√",
1990
+ * "unixVer": "4.25"
1991
+ * },
1992
+ * "harmony": {
1993
+ * "osVer": "3.0",
1994
+ * "uniVer": "x",
1995
+ * "unixVer": "x"
1996
+ * }
1997
+ * },
1998
+ * "web": {
1999
+ * "uniVer": "x",
2000
+ * "unixVer": "x"
2001
+ * }
2002
+ * }
2003
+ */
2004
+ 'zoom-in' |
2005
+ /**
2006
+ * 从大逐渐缩小并且从不透明到透明逐渐隐藏关闭动画
2007
+ * @uniPlatform {
2008
+ * "app": {
2009
+ * "android": {
2010
+ * "osVer": "5.0",
2011
+ * "uniVer": "√",
2012
+ * "unixVer": "4.18"
2013
+ * },
2014
+ * "ios": {
2015
+ * "osVer": "12.0",
2016
+ * "uniVer": "√",
2017
+ * "unixVer": "4.25"
2018
+ * },
2019
+ * "harmony": {
2020
+ * "osVer": "3.0",
2021
+ * "uniVer": "x",
2022
+ * "unixVer": "x"
2023
+ * }
2024
+ * },
2025
+ * "web": {
2026
+ * "uniVer": "x",
2027
+ * "unixVer": "x"
2028
+ * }
2029
+ * }
2030
+ */
2031
+ 'zoom-fade-in' |
2032
+ /**
2033
+ * 从右侧平移出栈动画效果
2034
+ * @uniPlatform {
2035
+ * "app": {
2036
+ * "android": {
2037
+ * "osVer": "5.0",
2038
+ * "uniVer": "√",
2039
+ * "unixVer": "4.18"
2040
+ * },
2041
+ * "ios": {
2042
+ * "osVer": "12.0",
2043
+ * "uniVer": "√",
2044
+ * "unixVer": "4.25"
2045
+ * },
2046
+ * "harmony": {
2047
+ * "osVer": "3.0",
2048
+ * "uniVer": "4.23",
2049
+ * "unixVer": "x"
2050
+ * }
2051
+ * },
2052
+ * "web": {
2053
+ * "uniVer": "x",
2054
+ * "unixVer": "x"
2055
+ * }
2056
+ * }
2057
+ */
2058
+ 'pop-out' | null
1529
2059
  /**
1530
2060
  * 窗口关闭动画的持续时间,单位为 ms
1531
2061
  * @uniPlatform {
@@ -0,0 +1,22 @@
1
+ // 本文件为自动构建生成
2
+ import {
3
+ ShareWithSystemSuccess as ShareWithSystemSuccessOrigin,
4
+ ShareWithSystemFail as ShareWithSystemFailOrigin,
5
+ ShareWithSystemSuccessCallback as ShareWithSystemSuccessCallbackOrigin,
6
+ ShareWithSystemFailCallback as ShareWithSystemFailCallbackOrigin,
7
+ ShareWithSystemCallback as ShareWithSystemCallbackOrigin,
8
+ ShareWithSystemOptions as ShareWithSystemOptionsOrigin,
9
+ ShareWithSystem as ShareWithSystemOrigin,
10
+ Uni as UniOrigin
11
+ } from './interface'
12
+
13
+ declare global {
14
+ type ShareWithSystemSuccess = ShareWithSystemSuccessOrigin
15
+ type ShareWithSystemFail = ShareWithSystemFailOrigin
16
+ type ShareWithSystemSuccessCallback = ShareWithSystemSuccessCallbackOrigin
17
+ type ShareWithSystemFailCallback = ShareWithSystemFailCallbackOrigin
18
+ type ShareWithSystemCallback = ShareWithSystemCallbackOrigin
19
+ type ShareWithSystemOptions = ShareWithSystemOptionsOrigin
20
+ type ShareWithSystem = ShareWithSystemOrigin
21
+ interface Uni extends UniOrigin { }
22
+ }
@@ -0,0 +1,10 @@
1
+ // 本文件为自动构建生成
2
+ export {
3
+ ShareWithSystemSuccess,
4
+ ShareWithSystemFail,
5
+ ShareWithSystemSuccessCallback,
6
+ ShareWithSystemFailCallback,
7
+ ShareWithSystemCallback,
8
+ ShareWithSystemOptions,
9
+ ShareWithSystem,
10
+ } from './interface'