@dcloudio/uni-app-x 0.7.14 → 0.7.16

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 (175) hide show
  1. package/options.d.ts +1 -1
  2. package/package.json +1 -1
  3. package/types/native/CSSStyleDeclaration.d.ts +0 -72
  4. package/types/native/CanvasRenderingContext2D.d.ts +1943 -0
  5. package/types/native/DOMRect.d.ts +0 -180
  6. package/types/native/DrawableContext.d.ts +161 -628
  7. package/types/native/IUniElement.d.ts +513 -1868
  8. package/types/native/IUniObjectElement.d.ts +124 -0
  9. package/types/native/Path2D.d.ts +241 -0
  10. package/types/native/SnapshotOptions.d.ts +1 -0
  11. package/types/native/UniApp.d.ts +110 -0
  12. package/types/native/UniCanvasElement.d.ts +9 -0
  13. package/types/native/UniNativePage.d.ts +48 -1
  14. package/types/native/UniPageManager.d.ts +4 -1
  15. package/types/native/UniProvider.d.ts +1 -0
  16. package/types/native/UniResizeObserver.d.ts +9 -99
  17. package/types/native/UniScrollEvent.d.ts +1 -1
  18. package/types/native/UniSwiperAnimationFinishEvent.d.ts +1 -1
  19. package/types/native/UniSwiperChangeEvent.d.ts +1 -1
  20. package/types/native/UniVideoElement.d.ts +5 -0
  21. package/types/native/global.d.ts +73 -15
  22. package/types/native/index.d.ts +4 -0
  23. package/types/shim-uts-basic.d.ts +4495 -0
  24. package/types/uni/env/index.d.ts +39 -0
  25. package/types/uni/uts-plugin-api/global.d.ts +20 -1
  26. package/types/uni/uts-plugin-api/index.d.ts +20 -1
  27. package/types/uni/uts-plugin-api/lib/uni-addPhoneContact/utssdk/global.d.ts +26 -0
  28. package/types/uni/uts-plugin-api/lib/uni-addPhoneContact/utssdk/index.d.ts +12 -0
  29. package/types/uni/uts-plugin-api/lib/uni-addPhoneContact/utssdk/interface.d.ts +231 -0
  30. package/types/uni/uts-plugin-api/lib/uni-arrayBufferToBase64/utssdk/global.d.ts +10 -0
  31. package/types/uni/uts-plugin-api/lib/uni-arrayBufferToBase64/utssdk/index.d.ts +4 -0
  32. package/types/uni/uts-plugin-api/lib/uni-arrayBufferToBase64/utssdk/interface.d.ts +77 -0
  33. package/types/uni/uts-plugin-api/lib/uni-base64ToArrayBuffer/utssdk/global.d.ts +10 -0
  34. package/types/uni/uts-plugin-api/lib/uni-base64ToArrayBuffer/utssdk/index.d.ts +4 -0
  35. package/types/uni/uts-plugin-api/lib/uni-base64ToArrayBuffer/utssdk/interface.d.ts +77 -0
  36. package/types/uni/uts-plugin-api/lib/uni-cancelAnimationFrame/utssdk/global.d.ts +10 -0
  37. package/types/uni/uts-plugin-api/lib/uni-cancelAnimationFrame/utssdk/index.d.ts +4 -0
  38. package/types/uni/uts-plugin-api/lib/uni-cancelAnimationFrame/utssdk/interface.d.ts +24 -0
  39. package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/global.d.ts +20 -0
  40. package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/index.d.ts +9 -0
  41. package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/interface.d.ts +268 -0
  42. package/types/uni/uts-plugin-api/lib/uni-clipboard/utssdk/global.d.ts +40 -0
  43. package/types/uni/uts-plugin-api/lib/uni-clipboard/utssdk/index.d.ts +19 -0
  44. package/types/uni/uts-plugin-api/lib/uni-clipboard/utssdk/interface.d.ts +203 -0
  45. package/types/uni/uts-plugin-api/lib/uni-createIntersectionObserver/utssdk/global.d.ts +20 -0
  46. package/types/uni/uts-plugin-api/lib/uni-createIntersectionObserver/utssdk/index.d.ts +9 -0
  47. package/types/uni/uts-plugin-api/lib/uni-createIntersectionObserver/utssdk/interface.d.ts +152 -0
  48. package/types/uni/uts-plugin-api/lib/uni-createRequestPermissionListener/utssdk/interface.d.ts +20 -3
  49. package/types/uni/uts-plugin-api/lib/uni-createSelectorQuery/utssdk/interface.d.ts +24 -9
  50. package/types/uni/uts-plugin-api/lib/uni-createWebviewContext/utssdk/interface.d.ts +13 -6
  51. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/global.d.ts +28 -0
  52. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/index.d.ts +13 -0
  53. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/interface.d.ts +1335 -0
  54. package/types/uni/uts-plugin-api/lib/uni-event/utssdk/interface.d.ts +28 -0
  55. package/types/uni/uts-plugin-api/lib/uni-exit/utssdk/interface.d.ts +6 -1
  56. package/types/uni/uts-plugin-api/lib/uni-file/utssdk/global.d.ts +80 -0
  57. package/types/uni/uts-plugin-api/lib/uni-file/utssdk/index.d.ts +39 -0
  58. package/types/uni/uts-plugin-api/lib/uni-file/utssdk/interface.d.ts +174 -0
  59. package/types/uni/uts-plugin-api/lib/uni-fileSystemManager/utssdk/interface.d.ts +8 -1
  60. package/types/uni/uts-plugin-api/lib/uni-getAccessibilityInfo/utssdk/interface.d.ts +20 -17
  61. package/types/uni/uts-plugin-api/lib/uni-getAppAuthorizeSetting/utssdk/interface.d.ts +28 -20
  62. package/types/uni/uts-plugin-api/lib/uni-getAppBaseInfo/utssdk/interface.d.ts +201 -64
  63. package/types/uni/uts-plugin-api/lib/uni-getDeviceInfo/utssdk/interface.d.ts +180 -59
  64. package/types/uni/uts-plugin-api/lib/uni-getElementById/utssdk/interface.d.ts +10 -2
  65. package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/global.d.ts +12 -0
  66. package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/index.d.ts +5 -0
  67. package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +47 -0
  68. package/types/uni/uts-plugin-api/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +10 -1
  69. package/types/uni/uts-plugin-api/lib/uni-getLocation/utssdk/global.d.ts +24 -0
  70. package/types/uni/uts-plugin-api/lib/uni-getLocation/utssdk/index.d.ts +11 -0
  71. package/types/uni/uts-plugin-api/lib/uni-getLocation/utssdk/interface.d.ts +564 -0
  72. package/types/uni/uts-plugin-api/lib/uni-getLocation-system/utssdk/global.d.ts +2 -14
  73. package/types/uni/uts-plugin-api/lib/uni-getLocation-system/utssdk/index.d.ts +1 -6
  74. package/types/uni/uts-plugin-api/lib/uni-getLocation-system/utssdk/interface.d.ts +1 -151
  75. package/types/uni/uts-plugin-api/lib/uni-getLocation-tencent/utssdk/global.d.ts +8 -0
  76. package/types/uni/uts-plugin-api/lib/uni-getLocation-tencent/utssdk/index.d.ts +4 -0
  77. package/types/uni/uts-plugin-api/lib/uni-getLocation-tencent/utssdk/interface.d.ts +1 -0
  78. package/types/uni/uts-plugin-api/lib/uni-getNetworkType/utssdk/global.d.ts +8 -0
  79. package/types/uni/uts-plugin-api/lib/uni-getNetworkType/utssdk/index.d.ts +4 -0
  80. package/types/uni/uts-plugin-api/lib/uni-getNetworkType/utssdk/interface.d.ts +114 -34
  81. package/types/uni/uts-plugin-api/lib/uni-getPerformance/utssdk/interface.d.ts +7 -1
  82. package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/global.d.ts +8 -0
  83. package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/index.d.ts +4 -0
  84. package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/interface.d.ts +304 -27
  85. package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/interface.d.ts +500 -149
  86. package/types/uni/uts-plugin-api/lib/uni-getSystemSetting/utssdk/interface.d.ts +123 -112
  87. package/types/uni/uts-plugin-api/lib/uni-installApk/utssdk/interface.d.ts +9 -6
  88. package/types/uni/uts-plugin-api/lib/uni-interceptor/utssdk/interface.d.ts +18 -2
  89. package/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/global.d.ts +22 -0
  90. package/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/index.d.ts +10 -0
  91. package/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/interface.d.ts +60 -0
  92. package/types/uni/uts-plugin-api/lib/uni-loadFontFace/utssdk/interface.d.ts +8 -1
  93. package/types/uni/{uts-plugin-extend → uts-plugin-api}/lib/uni-makePhoneCall/utssdk/global.d.ts +9 -6
  94. package/types/uni/{uts-plugin-extend → uts-plugin-api}/lib/uni-makePhoneCall/utssdk/index.d.ts +4 -2
  95. package/types/uni/{uts-plugin-extend → uts-plugin-api}/lib/uni-makePhoneCall/utssdk/interface.d.ts +40 -61
  96. package/types/uni/uts-plugin-api/lib/uni-media/utssdk/global.d.ts +2 -0
  97. package/types/uni/uts-plugin-api/lib/uni-media/utssdk/index.d.ts +1 -0
  98. package/types/uni/uts-plugin-api/lib/uni-media/utssdk/interface.d.ts +327 -58
  99. package/types/uni/uts-plugin-api/lib/uni-navigationBar/utssdk/global.d.ts +24 -0
  100. package/types/uni/uts-plugin-api/lib/uni-navigationBar/utssdk/index.d.ts +12 -0
  101. package/types/uni/uts-plugin-api/lib/uni-navigationBar/utssdk/interface.d.ts +213 -5
  102. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +280 -92
  103. package/types/uni/uts-plugin-api/lib/uni-openAppAuthorizeSetting/utssdk/interface.d.ts +20 -15
  104. package/types/uni/uts-plugin-api/lib/uni-openDocument/utssdk/global.d.ts +24 -0
  105. package/types/uni/uts-plugin-api/lib/uni-openDocument/utssdk/index.d.ts +11 -0
  106. package/types/uni/uts-plugin-api/lib/uni-openDocument/utssdk/interface.d.ts +70 -0
  107. package/types/uni/uts-plugin-api/lib/uni-pageScrollTo/utssdk/global.d.ts +2 -0
  108. package/types/uni/uts-plugin-api/lib/uni-pageScrollTo/utssdk/index.d.ts +1 -0
  109. package/types/uni/uts-plugin-api/lib/uni-pageScrollTo/utssdk/interface.d.ts +16 -6
  110. package/types/uni/uts-plugin-api/lib/uni-payment/utssdk/interface.d.ts +161 -11
  111. package/types/uni/uts-plugin-api/lib/uni-payment-alipay/utssdk/global.d.ts +8 -0
  112. package/types/uni/uts-plugin-api/lib/uni-payment-alipay/utssdk/index.d.ts +4 -0
  113. package/types/uni/uts-plugin-api/lib/uni-payment-alipay/utssdk/interface.d.ts +1 -0
  114. package/types/uni/uts-plugin-api/lib/uni-payment-wxpay/utssdk/global.d.ts +8 -0
  115. package/types/uni/uts-plugin-api/lib/uni-payment-wxpay/utssdk/index.d.ts +4 -0
  116. package/types/uni/uts-plugin-api/lib/uni-payment-wxpay/utssdk/interface.d.ts +3 -0
  117. package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts +120 -42
  118. package/types/uni/uts-plugin-api/lib/uni-pullDownRefresh/utssdk/global.d.ts +2 -0
  119. package/types/uni/uts-plugin-api/lib/uni-pullDownRefresh/utssdk/index.d.ts +1 -0
  120. package/types/uni/uts-plugin-api/lib/uni-pullDownRefresh/utssdk/interface.d.ts +16 -1
  121. package/types/uni/uts-plugin-api/lib/uni-requestAnimationFrame/utssdk/global.d.ts +12 -0
  122. package/types/uni/uts-plugin-api/lib/uni-requestAnimationFrame/utssdk/index.d.ts +5 -0
  123. package/types/uni/uts-plugin-api/lib/uni-requestAnimationFrame/utssdk/interface.d.ts +28 -0
  124. package/types/uni/uts-plugin-api/lib/uni-route/utssdk/interface.d.ts +177 -32
  125. package/types/uni/uts-plugin-api/lib/uni-rpx2px/utssdk/interface.d.ts +7 -2
  126. package/types/uni/uts-plugin-api/lib/uni-scanCode/utssdk/global.d.ts +24 -0
  127. package/types/uni/uts-plugin-api/lib/uni-scanCode/utssdk/index.d.ts +11 -0
  128. package/types/uni/uts-plugin-api/lib/uni-scanCode/utssdk/interface.d.ts +73 -0
  129. package/types/uni/uts-plugin-api/lib/uni-storage/utssdk/interface.d.ts +112 -43
  130. package/types/uni/uts-plugin-api/lib/uni-tabBar/utssdk/global.d.ts +16 -0
  131. package/types/uni/uts-plugin-api/lib/uni-tabBar/utssdk/index.d.ts +8 -0
  132. package/types/uni/uts-plugin-api/lib/uni-tabBar/utssdk/interface.d.ts +78 -1
  133. package/types/uni/uts-plugin-api/lib/uni-theme/utssdk/interface.d.ts +199 -149
  134. package/types/uni/uts-plugin-api/lib/uni-virtualPayment/utssdk/global.d.ts +112 -0
  135. package/types/uni/uts-plugin-api/lib/uni-virtualPayment/utssdk/index.d.ts +55 -0
  136. package/types/uni/uts-plugin-api/lib/uni-virtualPayment/utssdk/interface.d.ts +1068 -0
  137. package/types/uni/uts-plugin-api/lib/uni-websocket/utssdk/interface.d.ts +170 -83
  138. package/types/uni/uts-plugin-biz/lib/uni-ad/utssdk/interface.d.ts +11 -7
  139. package/types/uni/uts-plugin-biz/lib/uni-facialRecognitionVerify/utssdk/interface.d.ts +33 -15
  140. package/types/uni/uts-plugin-biz/lib/uni-push/utssdk/global.d.ts +4 -0
  141. package/types/uni/uts-plugin-biz/lib/uni-push/utssdk/index.d.ts +2 -0
  142. package/types/uni/uts-plugin-biz/lib/uni-push/utssdk/interface.d.ts +777 -568
  143. package/types/uni/uts-plugin-biz/lib/uni-verify/utssdk/interface.d.ts +10 -6
  144. package/types/uni/uts-plugin-component/lib/uni-video/utssdk/interface.d.ts +132 -15
  145. package/types/uni/uts-plugin-extend/global.d.ts +1 -1
  146. package/types/uni/uts-plugin-extend/index.d.ts +1 -3
  147. package/types/uni/uts-plugin-extend/lib/uni-canvas/utssdk/interface.d.ts +4 -4
  148. package/types/uni/uts-plugin-extend/lib/uni-createMapContext/utssdk/interface.d.ts +1 -0
  149. package/types/uni/uts-plugin-extend/lib/uni-createMediaQueryObserver/utssdk/global.d.ts +13 -0
  150. package/types/uni/uts-plugin-extend/lib/uni-createMediaQueryObserver/utssdk/index.d.ts +5 -0
  151. package/types/uni/uts-plugin-extend/lib/uni-createMediaQueryObserver/utssdk/interface.d.ts +126 -0
  152. package/types/uni/uts-plugin-extend/lib/uni-locale/utssdk/interface.d.ts +3 -3
  153. package/types/uni-cloud/interface.d.ts +57 -3
  154. package/types/uni-cloud/unicloud-db/index.ts +3 -3
  155. package/types/vue/CheckboxGroupChangeEvent.d.ts +9 -1
  156. package/types/vue/PickerViewChangeEvent.d.ts +8 -0
  157. package/types/vue/ProgressActiveendEvent.d.ts +4 -0
  158. package/types/vue/RadioGroupChangeEvent.d.ts +9 -1
  159. package/types/vue/SliderChangeEvent.d.ts +4 -0
  160. package/types/vue/SwitchChangeEvent.d.ts +5 -1
  161. package/types/vue/UniCanvasElement.d.ts +6 -1
  162. package/types/vue/UniCloudDBElement.d.ts +5 -0
  163. package/types/vue/UniFormElement.d.ts +6 -1
  164. package/types/vue/UniNavigatorElement.d.ts +5 -0
  165. package/types/vue/global.d.ts +10 -9
  166. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/app-ios/global.d.ts +0 -78
  167. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/app-ios/index.d.ts +0 -38
  168. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/app-ios/interface.d.ts +0 -642
  169. package/types/uni/uts-plugin-extend/lib/uni-getClipboardData/utssdk/global.d.ts +0 -21
  170. package/types/uni/uts-plugin-extend/lib/uni-getClipboardData/utssdk/index.d.ts +0 -9
  171. package/types/uni/uts-plugin-extend/lib/uni-getClipboardData/utssdk/interface.d.ts +0 -119
  172. package/types/uni/uts-plugin-extend/lib/uni-setClipboardData/utssdk/global.d.ts +0 -21
  173. package/types/uni/uts-plugin-extend/lib/uni-setClipboardData/utssdk/index.d.ts +0 -9
  174. package/types/uni/uts-plugin-extend/lib/uni-setClipboardData/utssdk/interface.d.ts +0 -122
  175. package/types/uni-cloud/unicloud-db/index.d.ts +0 -81
@@ -19,12 +19,20 @@ export class UniRadioGroupChangeEvent extends UniCustomEvent<UniRadioGroupChange
19
19
  /**
20
20
  * @package io.dcloud.uniapp.framework
21
21
  */
22
- interface UniRadioElement extends UniElement {}
22
+ export interface UniRadioElement extends UniElement {}
23
+ export let UniRadioElement: {
24
+ prototype: UniRadioElement
25
+ new (): UniRadioElement
26
+ }
23
27
 
24
28
  /**
25
29
  * @package io.dcloud.uniapp.framework
26
30
  */
27
31
  export interface UniRadioGroupElement extends UniElement {}
32
+ export let UniRadioGroupElement: {
33
+ prototype: UniRadioGroupElement
34
+ new (): UniRadioGroupElement
35
+ }
28
36
 
29
37
  export type RadioGroupChangeEvent = UniRadioGroupChangeEvent
30
38
  export const RadioGroupChangeEvent: typeof UniRadioGroupChangeEvent
@@ -23,6 +23,10 @@ export interface UniSliderElement extends UniElement {
23
23
  get value(): number
24
24
  set value(value: number)
25
25
  }
26
+ export let UniSliderElement: {
27
+ prototype: UniSliderElement
28
+ new (): UniSliderElement
29
+ }
26
30
 
27
31
  export type SliderChangeEvent = UniSliderChangeEvent
28
32
  export const SliderChangeEvent: typeof UniSliderChangeEvent
@@ -19,7 +19,11 @@ export class UniSwitchChangeEvent extends UniCustomEvent<UniSwitchChangeEventDet
19
19
  /**
20
20
  * @package io.dcloud.uniapp.framework
21
21
  */
22
- interface UniSwitchElement extends UniElementImpl {}
22
+ export interface UniSwitchElement extends UniElementImpl {}
23
+ export let UniSwitchElement: {
24
+ prototype: UniSwitchElement
25
+ new (): UniSwitchElement
26
+ }
23
27
 
24
28
  export type SwitchChangeEvent = UniSwitchChangeEvent
25
29
  export const SwitchChangeEvent: typeof UniSwitchChangeEvent
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @package io.dcloud.uniapp.framework
5
5
  */
6
- interface UniCanvasElement extends UniElement {
6
+ export interface UniCanvasElement extends UniElement {
7
7
  /**
8
8
  * UniCanvasElement.getContext() 方法返回 canvas 的上下文,如果上下文没有定义则返回 null。
9
9
  *
@@ -18,6 +18,11 @@ interface UniCanvasElement extends UniElement {
18
18
  toDataURL(type?: string, quality?: any): string;
19
19
  }
20
20
 
21
+ export let UniCanvasElement: {
22
+ prototype: UniCanvasElement;
23
+ new(): UniCanvasElement;
24
+ };
25
+
21
26
  type PredefinedColorSpace = "display-p3" | "srgb";
22
27
 
23
28
  interface CanvasRenderingContext2DSettings {
@@ -210,3 +210,8 @@ export interface UniCloudDBElement extends UniElement {
210
210
  */
211
211
  update(id: string, value: UTSJSONObject, options?: UTSJSONObject | null): void
212
212
  }
213
+
214
+ export let UniCloudDBElement: {
215
+ prototype: UniCloudDBElement
216
+ new (): UniCloudDBElement
217
+ }
@@ -5,7 +5,12 @@
5
5
  /**
6
6
  * @package io.dcloud.uniapp.framework
7
7
  */
8
- interface UniFormElement extends UniElement, IUniForm {}
8
+ export interface UniFormElement extends UniElement, IUniForm {}
9
+
10
+ export let UniFormElement: {
11
+ prototype: UniFormElement
12
+ new (): UniFormElement
13
+ }
9
14
 
10
15
  /**
11
16
  * @package io.dcloud.uniapp.framework
@@ -4,3 +4,8 @@
4
4
  * @package io.dcloud.uniapp.framework
5
5
  */
6
6
  export interface UniNavigatorElement extends UniElement {}
7
+
8
+ export let UniNavigatorElement: {
9
+ prototype: UniNavigatorElement
10
+ new (): UniNavigatorElement
11
+ }
@@ -79,7 +79,7 @@ declare global {
79
79
  type UniSliderChangeEvent = UniSliderChangeEventOrigin
80
80
  var UniSliderChangeEventDetail: typeof UniSliderChangeEventDetailOrigin
81
81
  type UniSliderChangeEventDetail = UniSliderChangeEventDetailOrigin
82
- var UniSliderElement: UniSliderElementOrigin
82
+ var UniSliderElement: typeof UniSliderElementOrigin
83
83
  type UniSliderElement = UniSliderElementOrigin
84
84
  var SliderChangeEvent: typeof SliderChangeEventOrigin
85
85
  type SliderChangeEvent = SliderChangeEventOrigin
@@ -90,7 +90,7 @@ declare global {
90
90
  type UniSwitchChangeEvent = UniSwitchChangeEventOrigin
91
91
  var UniSwitchChangeEventDetail: typeof UniSwitchChangeEventDetailOrigin
92
92
  type UniSwitchChangeEventDetail = UniSwitchChangeEventDetailOrigin
93
- var UniSwitchElement: UniSwitchElementOrigin
93
+ var UniSwitchElement: typeof UniSwitchElementOrigin
94
94
  type UniSwitchElement = UniSwitchElementOrigin
95
95
  var SwitchChangeEvent: typeof SwitchChangeEventOrigin
96
96
  type SwitchChangeEvent = SwitchChangeEventOrigin
@@ -101,16 +101,16 @@ declare global {
101
101
  type UniCheckboxGroupChangeEventDetail = UniCheckboxGroupChangeEventDetailOrigin
102
102
  var UniCheckboxGroupChangeEvent: typeof UniCheckboxGroupChangeEventOrigin
103
103
  type UniCheckboxGroupChangeEvent = UniCheckboxGroupChangeEventOrigin
104
- var UniCheckboxElement: UniCheckboxElementOrigin
104
+ var UniCheckboxElement: typeof UniCheckboxElementOrigin
105
105
  type UniCheckboxElement = UniCheckboxElementOrigin
106
106
  var CheckboxGroupChangeEvent: typeof CheckboxGroupChangeEventOrigin
107
107
  type CheckboxGroupChangeEvent = CheckboxGroupChangeEventOrigin
108
108
  var CheckboxGroupChangeEventDetail: typeof CheckboxGroupChangeEventDetailOrigin
109
109
  type CheckboxGroupChangeEventDetail = CheckboxGroupChangeEventDetailOrigin
110
110
  // pickerview
111
- var UniPickerViewColumnElement: UniPickerViewColumnElementOrigin
111
+ var UniPickerViewColumnElement: typeof UniPickerViewColumnElementOrigin
112
112
  type UniPickerViewColumnElement = UniPickerViewColumnElementOrigin
113
- var UniPickerViewElement: UniPickerViewElementOrigin
113
+ var UniPickerViewElement: typeof UniPickerViewElementOrigin
114
114
  type UniPickerViewElement = UniPickerViewElementOrigin
115
115
  var UniPickerViewChangeEventDetail: UniPickerViewChangeEventDetailOrigin
116
116
  type UniPickerViewChangeEventDetail = UniPickerViewChangeEventDetailOrigin
@@ -121,7 +121,7 @@ declare global {
121
121
  var PickerViewChangeEventDetail: typeof PickerViewChangeEventDetailOrigin
122
122
  type PickerViewChangeEventDetail = PickerViewChangeEventDetailOrigin
123
123
  // Progress
124
- var UniProgressElement: UniProgressElementOrigin
124
+ var UniProgressElement: typeof UniProgressElementOrigin
125
125
  type UniProgressElement = UniProgressElementOrigin
126
126
  var UniProgressActiveendEvent: typeof UniProgressActiveendEventOrigin
127
127
  type UniProgressActiveendEvent = UniProgressActiveendEventOrigin
@@ -132,7 +132,7 @@ declare global {
132
132
  var ProgressActiveendEventDetail: typeof ProgressActiveendEventDetailOrigin
133
133
  type ProgressActiveendEventDetail = ProgressActiveendEventDetailOrigin
134
134
  // radio
135
- var UniRadioGroupElement: UniRadioGroupElementOrigin
135
+ var UniRadioGroupElement: typeof UniRadioGroupElementOrigin
136
136
  type UniRadioGroupElement = UniRadioGroupElementOrigin
137
137
  var UniRadioGroupChangeEvent: UniRadioGroupChangeEventOrigin
138
138
  type UniRadioGroupChangeEvent = UniRadioGroupChangeEventOrigin
@@ -143,9 +143,9 @@ declare global {
143
143
  var RadioGroupChangeEventDetail: RadioGroupChangeEventDetailOrigin
144
144
  type RadioGroupChangeEventDetail = RadioGroupChangeEventDetailOrigin
145
145
  // navigator
146
- var UniNavigatorElement: UniNavigatorElementOrigin
146
+ var UniNavigatorElement: typeof UniNavigatorElementOrigin
147
147
  // form
148
- var UniFormElement: UniFormElementOrigin
148
+ var UniFormElement: typeof UniFormElementOrigin
149
149
  type UniFormElement = UniFormElementOrigin
150
150
  var UniFormSubmitEventDetail: UniFormSubmitEventDetailOrigin
151
151
  type UniFormSubmitEventDetail = UniFormSubmitEventDetailOrigin
@@ -170,6 +170,7 @@ declare global {
170
170
  type UniCloudDBComponentPaginationType = UniCloudDBComponentPaginationTypeOrigin
171
171
  type UniCloudDBComponentUpdateOptions = UniCloudDBComponentUpdateOptionsOrigin
172
172
  type UniCloudDBElement = UniCloudDBElementOrigin
173
+ var UniCloudDBElement: typeof UniCloudDBElementOrigin
173
174
  // lifecycle
174
175
  var onHide: typeof onHideOrigin
175
176
  var onLaunch: typeof onLaunchOrigin
@@ -1,78 +0,0 @@
1
- // 本文件为自动构建生成
2
- import {
3
- Request as RequestOrigin,
4
- RequestOptions as RequestOptionsOrigin,
5
- RequestSuccess as RequestSuccessOrigin,
6
- RequestMethod as RequestMethodOrigin,
7
- RequestErrorCode as RequestErrorCodeOrigin,
8
- RequestFail as RequestFailOrigin,
9
- RequestFail as RequestFailOrigin,
10
- RequestSuccessCallback as RequestSuccessCallbackOrigin,
11
- RequestFailCallback as RequestFailCallbackOrigin,
12
- RequestCompleteCallback as RequestCompleteCallbackOrigin,
13
- RequestTask as RequestTaskOrigin,
14
- UploadFile as UploadFileOrigin,
15
- UploadFileOptionFiles as UploadFileOptionFilesOrigin,
16
- UploadFileSuccess as UploadFileSuccessOrigin,
17
- UploadFileSuccessCallback as UploadFileSuccessCallbackOrigin,
18
- UploadFileFail as UploadFileFailOrigin,
19
- UploadFileFail as UploadFileFailOrigin,
20
- UploadFileFailCallback as UploadFileFailCallbackOrigin,
21
- UploadFileCompleteCallback as UploadFileCompleteCallbackOrigin,
22
- UploadFileOptions as UploadFileOptionsOrigin,
23
- OnProgressUpdateResult as OnProgressUpdateResultOrigin,
24
- UploadFileProgressUpdateCallback as UploadFileProgressUpdateCallbackOrigin,
25
- UploadTask as UploadTaskOrigin,
26
- DownloadFile as DownloadFileOrigin,
27
- DownloadFileSuccess as DownloadFileSuccessOrigin,
28
- DownloadFileSuccessCallback as DownloadFileSuccessCallbackOrigin,
29
- DownloadFileFail as DownloadFileFailOrigin,
30
- DownloadFileFail as DownloadFileFailOrigin,
31
- DownloadFileFailCallback as DownloadFileFailCallbackOrigin,
32
- DownloadFileComplete as DownloadFileCompleteOrigin,
33
- DownloadFileCompleteCallback as DownloadFileCompleteCallbackOrigin,
34
- DownloadFileOptions as DownloadFileOptionsOrigin,
35
- OnProgressDownloadResult as OnProgressDownloadResultOrigin,
36
- DownloadFileProgressUpdateCallback as DownloadFileProgressUpdateCallbackOrigin,
37
- DownloadTask as DownloadTaskOrigin,
38
- Uni as UniOrigin
39
- } from './interface'
40
-
41
- declare global {
42
- type Request<T> = RequestOrigin<T>
43
- type RequestOptions<T> = RequestOptionsOrigin<T>
44
- type RequestSuccess<T> = RequestSuccessOrigin<T>
45
- type RequestMethod = RequestMethodOrigin
46
- type RequestErrorCode = RequestErrorCodeOrigin
47
- type RequestFail = RequestFailOrigin
48
- type RequestFail = RequestFailOrigin
49
- type RequestSuccessCallback<T> = RequestSuccessCallbackOrigin<T>
50
- type RequestFailCallback = RequestFailCallbackOrigin
51
- type RequestCompleteCallback = RequestCompleteCallbackOrigin
52
- type RequestTask = RequestTaskOrigin
53
- type UploadFile = UploadFileOrigin
54
- type UploadFileOptionFiles = UploadFileOptionFilesOrigin
55
- type UploadFileSuccess = UploadFileSuccessOrigin
56
- type UploadFileSuccessCallback = UploadFileSuccessCallbackOrigin
57
- type UploadFileFail = UploadFileFailOrigin
58
- type UploadFileFail = UploadFileFailOrigin
59
- type UploadFileFailCallback = UploadFileFailCallbackOrigin
60
- type UploadFileCompleteCallback = UploadFileCompleteCallbackOrigin
61
- type UploadFileOptions = UploadFileOptionsOrigin
62
- type OnProgressUpdateResult = OnProgressUpdateResultOrigin
63
- type UploadFileProgressUpdateCallback = UploadFileProgressUpdateCallbackOrigin
64
- type UploadTask = UploadTaskOrigin
65
- type DownloadFile = DownloadFileOrigin
66
- type DownloadFileSuccess = DownloadFileSuccessOrigin
67
- type DownloadFileSuccessCallback = DownloadFileSuccessCallbackOrigin
68
- type DownloadFileFail = DownloadFileFailOrigin
69
- type DownloadFileFail = DownloadFileFailOrigin
70
- type DownloadFileFailCallback = DownloadFileFailCallbackOrigin
71
- type DownloadFileComplete = DownloadFileCompleteOrigin
72
- type DownloadFileCompleteCallback = DownloadFileCompleteCallbackOrigin
73
- type DownloadFileOptions = DownloadFileOptionsOrigin
74
- type OnProgressDownloadResult = OnProgressDownloadResultOrigin
75
- type DownloadFileProgressUpdateCallback = DownloadFileProgressUpdateCallbackOrigin
76
- type DownloadTask = DownloadTaskOrigin
77
- interface Uni extends UniOrigin { }
78
- }
@@ -1,38 +0,0 @@
1
- // 本文件为自动构建生成
2
- export {
3
- Request,
4
- RequestOptions,
5
- RequestSuccess,
6
- RequestMethod,
7
- RequestErrorCode,
8
- RequestFail,
9
- RequestFail,
10
- RequestSuccessCallback,
11
- RequestFailCallback,
12
- RequestCompleteCallback,
13
- RequestTask,
14
- UploadFile,
15
- UploadFileOptionFiles,
16
- UploadFileSuccess,
17
- UploadFileSuccessCallback,
18
- UploadFileFail,
19
- UploadFileFail,
20
- UploadFileFailCallback,
21
- UploadFileCompleteCallback,
22
- UploadFileOptions,
23
- OnProgressUpdateResult,
24
- UploadFileProgressUpdateCallback,
25
- UploadTask,
26
- DownloadFile,
27
- DownloadFileSuccess,
28
- DownloadFileSuccessCallback,
29
- DownloadFileFail,
30
- DownloadFileFail,
31
- DownloadFileFailCallback,
32
- DownloadFileComplete,
33
- DownloadFileCompleteCallback,
34
- DownloadFileOptions,
35
- OnProgressDownloadResult,
36
- DownloadFileProgressUpdateCallback,
37
- DownloadTask,
38
- } from './interface'