@dcloudio/uni-app-x 0.7.4 → 0.7.5

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 (110) hide show
  1. package/package.json +1 -1
  2. package/types/app.d.ts +9 -9
  3. package/types/native/CSSStyleDeclaration.d.ts +4 -2
  4. package/types/native/IUniElement.d.ts +26 -4
  5. package/types/native/UniApp.d.ts +2 -2
  6. package/types/native/UniCustomEvent.d.ts +25 -0
  7. package/types/native/UniElement.d.ts +6 -3
  8. package/types/native/{Event.d.ts → UniEvent.d.ts} +8 -2
  9. package/types/native/UniImageErrorEvent.d.ts +16 -0
  10. package/types/native/UniImageLoadEvent.d.ts +20 -0
  11. package/types/native/UniInputBlurEvent.d.ts +20 -0
  12. package/types/native/UniInputConfirmEvent.d.ts +16 -0
  13. package/types/native/{InputEvent.d.ts → UniInputEvent.d.ts} +6 -3
  14. package/types/native/{TextareaFocusEvent.d.ts → UniInputFocusEvent.d.ts} +6 -3
  15. package/types/native/UniInputKeyboardHeightChangeEvent.d.ts +20 -0
  16. package/types/native/{NestedPreScrollEvent.d.ts → UniNestedPreScrollEvent.d.ts} +26 -22
  17. package/types/native/UniPage.d.ts +4 -4
  18. package/types/native/UniPageEvent.d.ts +11 -0
  19. package/types/native/UniPageScrollEvent.d.ts +14 -0
  20. package/types/native/{PointerEvent.d.ts → UniPointerEvent.d.ts} +11 -4
  21. package/types/native/UniRefresherEvent.d.ts +14 -0
  22. package/types/native/{ResizeEvent.d.ts → UniResizeEvent.d.ts} +6 -3
  23. package/types/native/{RichTextItemClickEvent.d.ts → UniRichTextItemClickEvent.d.ts} +5 -2
  24. package/types/native/{ScrollEvent.d.ts → UniScrollEvent.d.ts} +6 -3
  25. package/types/native/UniScrollToLowerEvent.d.ts +16 -0
  26. package/types/native/UniScrollToUpperEvent.d.ts +16 -0
  27. package/types/native/{StartNestedScrollEvent.d.ts → UniStartNestedScrollEvent.d.ts} +6 -3
  28. package/types/native/{StopNestedScrollEvent.d.ts → UniStopNestedScrollEvent.d.ts} +5 -2
  29. package/types/native/{SwiperAnimationFinishEvent.d.ts → UniSwiperAnimationFinishEvent.d.ts} +5 -2
  30. package/types/native/{SwiperChangeEvent.d.ts → UniSwiperChangeEvent.d.ts} +5 -2
  31. package/types/native/{SwiperTransitionEvent.d.ts → UniSwiperTransitionEvent.d.ts} +5 -2
  32. package/types/native/{TabTapEvent.d.ts → UniTabTapEvent.d.ts} +6 -3
  33. package/types/native/UniTextElement.d.ts +3 -0
  34. package/types/native/UniTextareaBlurEvent.d.ts +20 -0
  35. package/types/native/{InputFocusEvent.d.ts → UniTextareaFocusEvent.d.ts} +7 -3
  36. package/types/native/UniTextareaLineChangeEvent.d.ts +24 -0
  37. package/types/native/{TouchEvent.d.ts → UniTouchEvent.d.ts} +13 -6
  38. package/types/native/UniVideoElement.d.ts +5 -5
  39. package/types/native/{WebViewDownloadEvent.d.ts → UniWebViewDownloadEvent.d.ts} +10 -4
  40. package/types/native/{WebViewErrorEvent.d.ts → UniWebViewErrorEvent.d.ts} +10 -4
  41. package/types/native/UniWebViewLoadEvent.d.ts +27 -0
  42. package/types/native/UniWebViewLoadingEvent.d.ts +28 -0
  43. package/types/native/UniWebViewMessageEvent.d.ts +27 -0
  44. package/types/native/UniWebViewServiceMessageEvent.d.ts +1 -1
  45. package/types/native/global.d.ts +238 -111
  46. package/types/native/index.d.ts +34 -34
  47. package/types/page.d.ts +19 -19
  48. package/types/uni/core/lib/base/event/interface.d.ts +244 -4
  49. package/types/uni/core/lib/base/interceptor/interface.d.ts +2 -2
  50. package/types/uni/core/lib/lifecycle/interface.d.ts +26 -1
  51. package/types/uni/core/lib/performance/interface.d.ts +26 -1
  52. package/types/uni/core/lib/route/interface.d.ts +30 -30
  53. package/types/uni/core/lib/ui/create-selector-query/interface.d.ts +73 -73
  54. package/types/uni/core/lib/ui/get-element-by-id/interface.d.ts +2 -2
  55. package/types/uni/core/lib/ui/load-font-face/interface.d.ts +9 -9
  56. package/types/uni/core/lib/ui/page-scroll-to/interface.d.ts +37 -37
  57. package/types/uni/core/lib/ui/pull-down-refresh/interface.d.ts +122 -2
  58. package/types/uni/core/lib/ui/set-navigation-bar-color/interface.d.ts +7 -7
  59. package/types/uni/core/lib/ui/set-navigation-bar-title/interface.d.ts +6 -6
  60. package/types/uni/core/lib/ui/tab-bar/interface.d.ts +489 -9
  61. package/types/uni/uts-plugin-api/global.d.ts +1 -0
  62. package/types/uni/uts-plugin-api/index.d.ts +1 -0
  63. package/types/uni/uts-plugin-api/lib/uni-createRequestPermissionListener/utssdk/global.d.ts +18 -0
  64. package/types/uni/uts-plugin-api/lib/uni-createRequestPermissionListener/utssdk/index.d.ts +8 -0
  65. package/types/uni/uts-plugin-api/lib/uni-createRequestPermissionListener/utssdk/interface.d.ts +44 -0
  66. package/types/uni/uts-plugin-api/lib/uni-createWebviewContext/utssdk/interface.d.ts +11 -7
  67. package/types/uni/uts-plugin-api/lib/uni-exit/utssdk/interface.d.ts +6 -2
  68. package/types/uni/uts-plugin-api/lib/uni-fileSystemManager/utssdk/interface.d.ts +26 -22
  69. package/types/uni/uts-plugin-api/lib/uni-getAccessibilityInfo/utssdk/interface.d.ts +1 -1
  70. package/types/uni/uts-plugin-api/lib/uni-getAppAuthorizeSetting/utssdk/interface.d.ts +1 -1
  71. package/types/uni/uts-plugin-api/lib/uni-getAppBaseInfo/utssdk/interface.d.ts +8 -4
  72. package/types/uni/uts-plugin-api/lib/uni-getDeviceInfo/utssdk/interface.d.ts +33 -29
  73. package/types/uni/uts-plugin-api/lib/uni-getLocation-system/utssdk/interface.d.ts +8 -4
  74. package/types/uni/uts-plugin-api/lib/uni-getNetworkType/utssdk/interface.d.ts +18 -14
  75. package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/interface.d.ts +106 -94
  76. package/types/uni/uts-plugin-api/lib/uni-getSystemSetting/utssdk/interface.d.ts +1 -1
  77. package/types/uni/uts-plugin-api/lib/uni-installApk/utssdk/interface.d.ts +6 -2
  78. package/types/uni/uts-plugin-api/lib/uni-media/utssdk/interface.d.ts +11 -3
  79. package/types/uni/uts-plugin-api/lib/uni-network/utssdk/interface.d.ts +176 -152
  80. package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts +67 -19
  81. package/types/uni/uts-plugin-api/lib/uni-storage/utssdk/interface.d.ts +51 -11
  82. package/types/uni/uts-plugin-api/lib/uni-websocket/utssdk/interface.d.ts +238 -186
  83. package/types/uni/uts-plugin-biz/lib/uni-ad/utssdk/interface.d.ts +17 -18
  84. package/types/uni/uts-plugin-component/lib/uni-video/utssdk/global.d.ts +26 -4
  85. package/types/uni/uts-plugin-component/lib/uni-video/utssdk/index.d.ts +13 -2
  86. package/types/uni/uts-plugin-component/lib/uni-video/utssdk/interface.d.ts +93 -32
  87. package/types/vue/CheckboxGroupChangeEvent.d.ts +9 -2
  88. package/types/vue/LifeCycle.d.ts +3 -3
  89. package/types/vue/PickerViewChangeEvent.d.ts +9 -2
  90. package/types/vue/ProgressActiveendEvent.d.ts +9 -2
  91. package/types/vue/RadioGroupChangeEvent.d.ts +9 -2
  92. package/types/vue/SliderChangeEvent.d.ts +9 -2
  93. package/types/vue/SwitchChangeEvent.d.ts +9 -2
  94. package/types/vue/UniFormElement.d.ts +16 -3
  95. package/types/native/CustomEvent.d.ts +0 -18
  96. package/types/native/ImageErrorEvent.d.ts +0 -13
  97. package/types/native/ImageLoadEvent.d.ts +0 -17
  98. package/types/native/InputBlurEvent.d.ts +0 -17
  99. package/types/native/InputConfirmEvent.d.ts +0 -13
  100. package/types/native/InputKeyboardHeightChangeEvent.d.ts +0 -17
  101. package/types/native/PageEvent.d.ts +0 -8
  102. package/types/native/PageScrollEvent.d.ts +0 -11
  103. package/types/native/RefresherEvent.d.ts +0 -10
  104. package/types/native/ScrollToLowerEvent.d.ts +0 -13
  105. package/types/native/ScrollToUpperEvent.d.ts +0 -13
  106. package/types/native/TextareaBlurEvent.d.ts +0 -17
  107. package/types/native/TextareaLineChangeEvent.d.ts +0 -21
  108. package/types/native/WebViewLoadedEvent.d.ts +0 -21
  109. package/types/native/WebViewLoadingEvent.d.ts +0 -22
  110. package/types/native/WebViewMessageEvent.d.ts +0 -21
@@ -2,85 +2,130 @@
2
2
  import {
3
3
  WebViewStyles as WebViewStylesOrigin,
4
4
  WebViewProgressStyles as WebViewProgressStylesOrigin,
5
+ ViewToTempFilePathSuccess as ViewToTempFilePathSuccessOrigin,
6
+ ViewToTempFilePathFail as ViewToTempFilePathFailOrigin,
7
+ ViewToTempFilePathOptions as ViewToTempFilePathOptionsOrigin,
8
+ UniWebViewServiceMessageEvent as UniWebViewServiceMessageEventOrigin,
9
+ WebViewServiceMessageEvent as WebViewServiceMessageEventOrigin,
10
+ UniWebViewMessageEventDetail as UniWebViewMessageEventDetailOrigin,
11
+ UniWebViewMessageEvent as UniWebViewMessageEventOrigin,
5
12
  WebViewMessageEventDetail as WebViewMessageEventDetailOrigin,
6
13
  WebViewMessageEvent as WebViewMessageEventOrigin,
14
+ UniWebViewLoadingEventDetail as UniWebViewLoadingEventDetailOrigin,
15
+ UniWebViewLoadingEvent as UniWebViewLoadingEventOrigin,
7
16
  WebViewLoadingEventDetail as WebViewLoadingEventDetailOrigin,
8
17
  WebViewLoadingEvent as WebViewLoadingEventOrigin,
18
+ UniWebViewLoadEventDetail as UniWebViewLoadEventDetailOrigin,
19
+ UniWebViewLoadEvent as UniWebViewLoadEventOrigin,
9
20
  WebViewLoadedEventDetail as WebViewLoadedEventDetailOrigin,
10
21
  WebViewLoadedEvent as WebViewLoadedEventOrigin,
22
+ UniWebViewErrorEventDetail as UniWebViewErrorEventDetailOrigin,
23
+ UniWebViewErrorEvent as UniWebViewErrorEventOrigin,
11
24
  WebViewErrorEventDetail as WebViewErrorEventDetailOrigin,
12
25
  WebViewErrorEvent as WebViewErrorEventOrigin,
26
+ UniWebViewElementImpl as UniWebViewElementImplOrigin,
27
+ UniWebViewDownloadEventDetail as UniWebViewDownloadEventDetailOrigin,
28
+ UniWebViewDownloadEvent as UniWebViewDownloadEventOrigin,
13
29
  WebViewDownloadEventDetail as WebViewDownloadEventDetailOrigin,
14
30
  WebViewDownloadEvent as WebViewDownloadEventOrigin,
15
- ViewToTempFilePathSuccess as ViewToTempFilePathSuccessOrigin,
16
- ViewToTempFilePathFail as ViewToTempFilePathFailOrigin,
17
- ViewToTempFilePathOptions as ViewToTempFilePathOptionsOrigin,
18
- UniWebViewServiceMessageEvent as UniWebViewServiceMessageEventOrigin,
19
- WebViewServiceMessageEvent as WebViewServiceMessageEventOrigin,
20
- WebViewServiceMessageEvent as WebViewServiceMessageEventOrigin,
21
- UniWebViewElementImpl as UniWebViewElementImplOrigin,
22
31
  UniVideoElement as UniVideoElementOrigin,
23
32
  Danmu as DanmuOrigin,
24
33
  RequestFullScreenOptions as RequestFullScreenOptionsOrigin,
25
- UniTextElementImpl as UniTextElementImplOrigin,
26
- UniTabsElementImpl as UniTabsElementImplOrigin,
27
- UniPageManager as UniPageManagerOrigin,
28
- IPageManager as IPageManagerOrigin,
29
- UniPage as UniPageOrigin,
30
- IPage as IPageOrigin,
31
- UniFormControlElement as UniFormControlElementOrigin,
32
- UniError as UniErrorOrigin,
33
- UniElementImpl as UniElementImplOrigin,
34
- UniViewElementImpl as UniViewElementImplOrigin,
35
- UniDocument as UniDocumentOrigin,
36
- IDocument as IDocumentOrigin,
37
- UniCallbackWrapper as UniCallbackWrapperOrigin,
38
- UniApp as UniAppOrigin,
39
- IApp as IAppOrigin,
40
- UniAggregateError as UniAggregateErrorOrigin,
41
- UTSAndroidHookProxy as UTSAndroidHookProxyOrigin,
34
+ UniTouch as UniTouchOrigin,
35
+ UniTouchEvent as UniTouchEventOrigin,
42
36
  Touch as TouchOrigin,
43
37
  TouchEvent as TouchEventOrigin,
38
+ UniTextareaLineChangeEvent as UniTextareaLineChangeEventOrigin,
44
39
  TextareaLineChangeEvent as TextareaLineChangeEventOrigin,
40
+ UniTextareaFocusEvent as UniTextareaFocusEventOrigin,
45
41
  TextareaFocusEvent as TextareaFocusEventOrigin,
42
+ UniTextareaBlurEvent as UniTextareaBlurEventOrigin,
46
43
  TextareaBlurEvent as TextareaBlurEventOrigin,
44
+ UniTextElementImpl as UniTextElementImplOrigin,
45
+ UniTabsElementImpl as UniTabsElementImplOrigin,
46
+ UniTabTapEvent as UniTabTapEventOrigin,
47
47
  TabTapEvent as TabTapEventOrigin,
48
+ UniSwiperTransitionEvent as UniSwiperTransitionEventOrigin,
48
49
  SwiperTransitionEvent as SwiperTransitionEventOrigin,
50
+ UniSwiperChangeEvent as UniSwiperChangeEventOrigin,
49
51
  SwiperChangeEvent as SwiperChangeEventOrigin,
52
+ UniSwiperAnimationFinishEvent as UniSwiperAnimationFinishEventOrigin,
50
53
  SwiperAnimationFinishEvent as SwiperAnimationFinishEventOrigin,
54
+ UniStopNestedScrollEvent as UniStopNestedScrollEventOrigin,
51
55
  StopNestedScrollEvent as StopNestedScrollEventOrigin,
56
+ UniStartNestedScrollEvent as UniStartNestedScrollEventOrigin,
52
57
  StartNestedScrollEvent as StartNestedScrollEventOrigin,
53
- SourceError as SourceErrorOrigin,
54
- TakeSnapshotOptions as TakeSnapshotOptionsOrigin,
55
- TakeSnapshotSuccess as TakeSnapshotSuccessOrigin,
56
- TakeSnapshotFail as TakeSnapshotFailOrigin,
57
- TakeSnapshotSuccessCallback as TakeSnapshotSuccessCallbackOrigin,
58
- TakeSnapshotFailCallback as TakeSnapshotFailCallbackOrigin,
59
- TakeSnapshotCompleteCallback as TakeSnapshotCompleteCallbackOrigin,
58
+ UniScrollToUpperEvent as UniScrollToUpperEventOrigin,
60
59
  ScrollToUpperEvent as ScrollToUpperEventOrigin,
60
+ UniScrollToLowerEvent as UniScrollToLowerEventOrigin,
61
61
  ScrollToLowerEvent as ScrollToLowerEventOrigin,
62
+ UniScrollEvent as UniScrollEventOrigin,
62
63
  ScrollEvent as ScrollEventOrigin,
64
+ UniRichTextItemClickEvent as UniRichTextItemClickEventOrigin,
63
65
  RichTextItemClickEvent as RichTextItemClickEventOrigin,
66
+ UniResizeEvent as UniResizeEventOrigin,
64
67
  ResizeEvent as ResizeEventOrigin,
68
+ UniRefresherEvent as UniRefresherEventOrigin,
65
69
  RefresherEvent as RefresherEventOrigin,
70
+ UniPointerEvent as UniPointerEventOrigin,
66
71
  PointerEvent as PointerEventOrigin,
67
72
  MouseEvent as MouseEventOrigin,
68
- MouseEvent as MouseEventOrigin,
73
+ UniMouseEvent as UniMouseEventOrigin,
74
+ UniPageScrollEvent as UniPageScrollEventOrigin,
69
75
  PageScrollEvent as PageScrollEventOrigin,
70
- PageNode as PageNodeOrigin,
76
+ UniPageManager as UniPageManagerOrigin,
77
+ IPageManager as IPageManagerOrigin,
78
+ UniPageEvent as UniPageEventOrigin,
71
79
  PageEvent as PageEventOrigin,
72
- NodeData as NodeDataOrigin,
73
- INodeData as INodeDataOrigin,
80
+ UniPage as UniPageOrigin,
81
+ IPage as IPageOrigin,
82
+ UniNestedPreScrollEvent as UniNestedPreScrollEventOrigin,
74
83
  NestedPreScrollEvent as NestedPreScrollEventOrigin,
75
- NativeLoadFontFaceFail as NativeLoadFontFaceFailOrigin,
76
- NativeLoadFontFaceOptions as NativeLoadFontFaceOptionsOrigin,
84
+ UniInputKeyboardHeightChangeEvent as UniInputKeyboardHeightChangeEventOrigin,
77
85
  InputKeyboardHeightChangeEvent as InputKeyboardHeightChangeEventOrigin,
86
+ UniInputFocusEvent as UniInputFocusEventOrigin,
78
87
  InputFocusEvent as InputFocusEventOrigin,
88
+ UniInputEvent as UniInputEventOrigin,
79
89
  InputEvent as InputEventOrigin,
90
+ UniInputConfirmEvent as UniInputConfirmEventOrigin,
80
91
  InputConfirmEvent as InputConfirmEventOrigin,
92
+ UniInputBlurEvent as UniInputBlurEventOrigin,
81
93
  InputBlurEvent as InputBlurEventOrigin,
94
+ UniImageLoadEvent as UniImageLoadEventOrigin,
82
95
  ImageLoadEvent as ImageLoadEventOrigin,
96
+ UniImageErrorEvent as UniImageErrorEventOrigin,
83
97
  ImageErrorEvent as ImageErrorEventOrigin,
98
+ UniFormControlElement as UniFormControlElementOrigin,
99
+ UniEvent as UniEventOrigin,
100
+ UniKeyEvent as UniKeyEventOrigin,
101
+ Event as EventOrigin,
102
+ KeyEvent as KeyEventOrigin,
103
+ UniError as UniErrorOrigin,
104
+ UniElementImpl as UniElementImplOrigin,
105
+ UniViewElementImpl as UniViewElementImplOrigin,
106
+ UniDocument as UniDocumentOrigin,
107
+ IDocument as IDocumentOrigin,
108
+ UniCustomEventOptions as UniCustomEventOptionsOrigin,
109
+ UniCustomEvent as UniCustomEventOrigin,
110
+ CustomEventOptions as CustomEventOptionsOrigin,
111
+ CustomEvent as CustomEventOrigin,
112
+ UniCallbackWrapper as UniCallbackWrapperOrigin,
113
+ UniApp as UniAppOrigin,
114
+ IApp as IAppOrigin,
115
+ UniAggregateError as UniAggregateErrorOrigin,
116
+ UTSAndroidHookProxy as UTSAndroidHookProxyOrigin,
117
+ SourceError as SourceErrorOrigin,
118
+ TakeSnapshotOptions as TakeSnapshotOptionsOrigin,
119
+ TakeSnapshotSuccess as TakeSnapshotSuccessOrigin,
120
+ TakeSnapshotFail as TakeSnapshotFailOrigin,
121
+ TakeSnapshotSuccessCallback as TakeSnapshotSuccessCallbackOrigin,
122
+ TakeSnapshotFailCallback as TakeSnapshotFailCallbackOrigin,
123
+ TakeSnapshotCompleteCallback as TakeSnapshotCompleteCallbackOrigin,
124
+ PageNode as PageNodeOrigin,
125
+ NodeData as NodeDataOrigin,
126
+ INodeData as INodeDataOrigin,
127
+ NativeLoadFontFaceFail as NativeLoadFontFaceFailOrigin,
128
+ NativeLoadFontFaceOptions as NativeLoadFontFaceOptionsOrigin,
84
129
  IUniError as IUniErrorOrigin,
85
130
  UniElement as UniElementOrigin,
86
131
  INode as INodeOrigin,
@@ -106,12 +151,8 @@ import {
106
151
  UniCommentElement as UniCommentElementOrigin,
107
152
  IComment as ICommentOrigin,
108
153
  INavigationBar as INavigationBarOrigin,
109
- Event as EventOrigin,
110
- KeyEvent as KeyEventOrigin,
111
154
  DrawableContext as DrawableContextOrigin,
112
155
  DOMRect as DOMRectOrigin,
113
- CustomEventOptions as CustomEventOptionsOrigin,
114
- CustomEvent as CustomEventOrigin,
115
156
  CSSStyleDeclaration as CSSStyleDeclarationOrigin,
116
157
  AsyncApiResult as AsyncApiResultOrigin,
117
158
  } from './index'
@@ -121,142 +162,236 @@ declare global {
121
162
  type WebViewStyles = WebViewStylesOrigin
122
163
  const WebViewProgressStyles: typeof WebViewProgressStylesOrigin
123
164
  type WebViewProgressStyles = WebViewProgressStylesOrigin
165
+ const ViewToTempFilePathSuccess: typeof ViewToTempFilePathSuccessOrigin
166
+ type ViewToTempFilePathSuccess = ViewToTempFilePathSuccessOrigin
167
+ const ViewToTempFilePathFail: typeof ViewToTempFilePathFailOrigin
168
+ type ViewToTempFilePathFail = ViewToTempFilePathFailOrigin
169
+ const ViewToTempFilePathOptions: typeof ViewToTempFilePathOptionsOrigin
170
+ type ViewToTempFilePathOptions = ViewToTempFilePathOptionsOrigin
171
+ const UniWebViewServiceMessageEvent: typeof UniWebViewServiceMessageEventOrigin
172
+ type UniWebViewServiceMessageEvent = UniWebViewServiceMessageEventOrigin
173
+ const WebViewServiceMessageEvent: typeof WebViewServiceMessageEventOrigin
174
+ type WebViewServiceMessageEvent = WebViewServiceMessageEventOrigin
175
+ const UniWebViewMessageEventDetail: typeof UniWebViewMessageEventDetailOrigin
176
+ type UniWebViewMessageEventDetail = UniWebViewMessageEventDetailOrigin
177
+ const UniWebViewMessageEvent: typeof UniWebViewMessageEventOrigin
178
+ type UniWebViewMessageEvent = UniWebViewMessageEventOrigin
124
179
  const WebViewMessageEventDetail: typeof WebViewMessageEventDetailOrigin
125
- type WebViewMessageEventDetail = WebViewMessageEventDetailOrigin
126
180
  const WebViewMessageEvent: typeof WebViewMessageEventOrigin
181
+ type WebViewMessageEventDetail = WebViewMessageEventDetailOrigin
127
182
  type WebViewMessageEvent = WebViewMessageEventOrigin
183
+ const UniWebViewLoadingEventDetail: typeof UniWebViewLoadingEventDetailOrigin
184
+ type UniWebViewLoadingEventDetail = UniWebViewLoadingEventDetailOrigin
185
+ const UniWebViewLoadingEvent: typeof UniWebViewLoadingEventOrigin
186
+ type UniWebViewLoadingEvent = UniWebViewLoadingEventOrigin
128
187
  const WebViewLoadingEventDetail: typeof WebViewLoadingEventDetailOrigin
129
- type WebViewLoadingEventDetail = WebViewLoadingEventDetailOrigin
130
188
  const WebViewLoadingEvent: typeof WebViewLoadingEventOrigin
189
+ type WebViewLoadingEventDetail = WebViewLoadingEventDetailOrigin
131
190
  type WebViewLoadingEvent = WebViewLoadingEventOrigin
191
+ const UniWebViewLoadEventDetail: typeof UniWebViewLoadEventDetailOrigin
192
+ type UniWebViewLoadEventDetail = UniWebViewLoadEventDetailOrigin
193
+ const UniWebViewLoadEvent: typeof UniWebViewLoadEventOrigin
194
+ type UniWebViewLoadEvent = UniWebViewLoadEventOrigin
132
195
  const WebViewLoadedEventDetail: typeof WebViewLoadedEventDetailOrigin
133
- type WebViewLoadedEventDetail = WebViewLoadedEventDetailOrigin
134
196
  const WebViewLoadedEvent: typeof WebViewLoadedEventOrigin
197
+ type WebViewLoadedEventDetail = WebViewLoadedEventDetailOrigin
135
198
  type WebViewLoadedEvent = WebViewLoadedEventOrigin
199
+ const UniWebViewErrorEventDetail: typeof UniWebViewErrorEventDetailOrigin
200
+ type UniWebViewErrorEventDetail = UniWebViewErrorEventDetailOrigin
201
+ const UniWebViewErrorEvent: typeof UniWebViewErrorEventOrigin
202
+ type UniWebViewErrorEvent = UniWebViewErrorEventOrigin
136
203
  const WebViewErrorEventDetail: typeof WebViewErrorEventDetailOrigin
137
- type WebViewErrorEventDetail = WebViewErrorEventDetailOrigin
138
204
  const WebViewErrorEvent: typeof WebViewErrorEventOrigin
205
+ type WebViewErrorEventDetail = WebViewErrorEventDetailOrigin
139
206
  type WebViewErrorEvent = WebViewErrorEventOrigin
207
+ const UniWebViewElementImpl: typeof UniWebViewElementImplOrigin
208
+ type UniWebViewElementImpl = UniWebViewElementImplOrigin
209
+ const UniWebViewDownloadEventDetail: typeof UniWebViewDownloadEventDetailOrigin
210
+ type UniWebViewDownloadEventDetail = UniWebViewDownloadEventDetailOrigin
211
+ const UniWebViewDownloadEvent: typeof UniWebViewDownloadEventOrigin
212
+ type UniWebViewDownloadEvent = UniWebViewDownloadEventOrigin
140
213
  const WebViewDownloadEventDetail: typeof WebViewDownloadEventDetailOrigin
141
- type WebViewDownloadEventDetail = WebViewDownloadEventDetailOrigin
142
214
  const WebViewDownloadEvent: typeof WebViewDownloadEventOrigin
215
+ type WebViewDownloadEventDetail = WebViewDownloadEventDetailOrigin
143
216
  type WebViewDownloadEvent = WebViewDownloadEventOrigin
144
- const ViewToTempFilePathSuccess: typeof ViewToTempFilePathSuccessOrigin
145
- type ViewToTempFilePathSuccess = ViewToTempFilePathSuccessOrigin
146
- const ViewToTempFilePathFail: typeof ViewToTempFilePathFailOrigin
147
- type ViewToTempFilePathFail = ViewToTempFilePathFailOrigin
148
- const ViewToTempFilePathOptions: typeof ViewToTempFilePathOptionsOrigin
149
- type ViewToTempFilePathOptions = ViewToTempFilePathOptionsOrigin
150
- const UniWebViewServiceMessageEvent: typeof UniWebViewServiceMessageEventOrigin
151
- type UniWebViewServiceMessageEvent = UniWebViewServiceMessageEventOrigin
152
- const WebViewServiceMessageEvent: typeof WebViewServiceMessageEventOrigin
153
- type WebViewServiceMessageEvent = WebViewServiceMessageEventOrigin
154
- const UniWebViewElementImpl: typeof UniWebViewElementImplOrigin
155
- type UniWebViewElementImpl = UniWebViewElementImplOrigin
156
217
  type UniVideoElement = UniVideoElementOrigin
157
218
  type Danmu = DanmuOrigin
158
219
  type RequestFullScreenOptions = RequestFullScreenOptionsOrigin
159
- const UniTextElementImpl: typeof UniTextElementImplOrigin
160
- type UniTextElementImpl = UniTextElementImplOrigin
161
- const UniTabsElementImpl: typeof UniTabsElementImplOrigin
162
- type UniTabsElementImpl = UniTabsElementImplOrigin
163
- type UniPageManager = UniPageManagerOrigin
164
- type IPageManager = IPageManagerOrigin
165
- type UniPage = UniPageOrigin
166
- type IPage = IPageOrigin
167
- const UniFormControlElement: typeof UniFormControlElementOrigin
168
- type UniFormControlElement<T> = UniFormControlElementOrigin<T>
169
- const UniError: typeof UniErrorOrigin
170
- type UniError = UniErrorOrigin
171
- const UniElementImpl: typeof UniElementImplOrigin
172
- type UniElementImpl = UniElementImplOrigin
173
- const UniViewElementImpl: typeof UniViewElementImplOrigin
174
- type UniViewElementImpl = UniViewElementImplOrigin
175
- type UniDocument = UniDocumentOrigin
176
- type IDocument = IDocumentOrigin
177
- const UniCallbackWrapper: typeof UniCallbackWrapperOrigin
178
- type UniCallbackWrapper = UniCallbackWrapperOrigin
179
- type UniApp = UniAppOrigin
180
- type IApp = IAppOrigin
181
- const UniAggregateError: typeof UniAggregateErrorOrigin
182
- type UniAggregateError = UniAggregateErrorOrigin
183
- type UTSAndroidHookProxy = UTSAndroidHookProxyOrigin
220
+ const UniTouch: typeof UniTouchOrigin
221
+ type UniTouch = UniTouchOrigin
222
+ const UniTouchEvent: typeof UniTouchEventOrigin
223
+ type UniTouchEvent = UniTouchEventOrigin
184
224
  const Touch: typeof TouchOrigin
185
- type Touch = TouchOrigin
186
225
  const TouchEvent: typeof TouchEventOrigin
226
+ type Touch = TouchOrigin
187
227
  type TouchEvent = TouchEventOrigin
228
+ const UniTextareaLineChangeEvent: typeof UniTextareaLineChangeEventOrigin
229
+ type UniTextareaLineChangeEvent = UniTextareaLineChangeEventOrigin
188
230
  const TextareaLineChangeEvent: typeof TextareaLineChangeEventOrigin
189
231
  type TextareaLineChangeEvent = TextareaLineChangeEventOrigin
232
+ const UniTextareaFocusEvent: typeof UniTextareaFocusEventOrigin
233
+ type UniTextareaFocusEvent = UniTextareaFocusEventOrigin
190
234
  const TextareaFocusEvent: typeof TextareaFocusEventOrigin
191
235
  type TextareaFocusEvent = TextareaFocusEventOrigin
236
+ const UniTextareaBlurEvent: typeof UniTextareaBlurEventOrigin
237
+ type UniTextareaBlurEvent = UniTextareaBlurEventOrigin
192
238
  const TextareaBlurEvent: typeof TextareaBlurEventOrigin
193
239
  type TextareaBlurEvent = TextareaBlurEventOrigin
240
+ const UniTextElementImpl: typeof UniTextElementImplOrigin
241
+ type UniTextElementImpl = UniTextElementImplOrigin
242
+ const UniTabsElementImpl: typeof UniTabsElementImplOrigin
243
+ type UniTabsElementImpl = UniTabsElementImplOrigin
244
+ const UniTabTapEvent: typeof UniTabTapEventOrigin
245
+ type UniTabTapEvent = UniTabTapEventOrigin
194
246
  const TabTapEvent: typeof TabTapEventOrigin
195
247
  type TabTapEvent = TabTapEventOrigin
248
+ const UniSwiperTransitionEvent: typeof UniSwiperTransitionEventOrigin
249
+ type UniSwiperTransitionEvent = UniSwiperTransitionEventOrigin
196
250
  const SwiperTransitionEvent: typeof SwiperTransitionEventOrigin
197
251
  type SwiperTransitionEvent = SwiperTransitionEventOrigin
252
+ const UniSwiperChangeEvent: typeof UniSwiperChangeEventOrigin
253
+ type UniSwiperChangeEvent = UniSwiperChangeEventOrigin
198
254
  const SwiperChangeEvent: typeof SwiperChangeEventOrigin
199
255
  type SwiperChangeEvent = SwiperChangeEventOrigin
256
+ const UniSwiperAnimationFinishEvent: typeof UniSwiperAnimationFinishEventOrigin
257
+ type UniSwiperAnimationFinishEvent = UniSwiperAnimationFinishEventOrigin
200
258
  const SwiperAnimationFinishEvent: typeof SwiperAnimationFinishEventOrigin
201
259
  type SwiperAnimationFinishEvent = SwiperAnimationFinishEventOrigin
260
+ const UniStopNestedScrollEvent: typeof UniStopNestedScrollEventOrigin
261
+ type UniStopNestedScrollEvent = UniStopNestedScrollEventOrigin
202
262
  const StopNestedScrollEvent: typeof StopNestedScrollEventOrigin
203
263
  type StopNestedScrollEvent = StopNestedScrollEventOrigin
264
+ const UniStartNestedScrollEvent: typeof UniStartNestedScrollEventOrigin
265
+ type UniStartNestedScrollEvent = UniStartNestedScrollEventOrigin
204
266
  const StartNestedScrollEvent: typeof StartNestedScrollEventOrigin
205
267
  type StartNestedScrollEvent = StartNestedScrollEventOrigin
206
- const SourceError: typeof SourceErrorOrigin
207
- type SourceError = SourceErrorOrigin
208
- const TakeSnapshotOptions: typeof TakeSnapshotOptionsOrigin
209
- type TakeSnapshotOptions = TakeSnapshotOptionsOrigin
210
- type TakeSnapshotSuccess = TakeSnapshotSuccessOrigin
211
- type TakeSnapshotFail = TakeSnapshotFailOrigin
212
- type TakeSnapshotSuccessCallback = TakeSnapshotSuccessCallbackOrigin
213
- type TakeSnapshotFailCallback = TakeSnapshotFailCallbackOrigin
214
- type TakeSnapshotCompleteCallback = TakeSnapshotCompleteCallbackOrigin
268
+ const UniScrollToUpperEvent: typeof UniScrollToUpperEventOrigin
269
+ type UniScrollToUpperEvent = UniScrollToUpperEventOrigin
215
270
  const ScrollToUpperEvent: typeof ScrollToUpperEventOrigin
216
271
  type ScrollToUpperEvent = ScrollToUpperEventOrigin
272
+ const UniScrollToLowerEvent: typeof UniScrollToLowerEventOrigin
273
+ type UniScrollToLowerEvent = UniScrollToLowerEventOrigin
217
274
  const ScrollToLowerEvent: typeof ScrollToLowerEventOrigin
218
275
  type ScrollToLowerEvent = ScrollToLowerEventOrigin
276
+ const UniScrollEvent: typeof UniScrollEventOrigin
277
+ type UniScrollEvent = UniScrollEventOrigin
219
278
  const ScrollEvent: typeof ScrollEventOrigin
220
279
  type ScrollEvent = ScrollEventOrigin
280
+ const UniRichTextItemClickEvent: typeof UniRichTextItemClickEventOrigin
281
+ type UniRichTextItemClickEvent = UniRichTextItemClickEventOrigin
221
282
  const RichTextItemClickEvent: typeof RichTextItemClickEventOrigin
222
283
  type RichTextItemClickEvent = RichTextItemClickEventOrigin
284
+ const UniResizeEvent: typeof UniResizeEventOrigin
285
+ type UniResizeEvent = UniResizeEventOrigin
223
286
  const ResizeEvent: typeof ResizeEventOrigin
224
287
  type ResizeEvent = ResizeEventOrigin
288
+ const UniRefresherEvent: typeof UniRefresherEventOrigin
289
+ type UniRefresherEvent = UniRefresherEventOrigin
225
290
  const RefresherEvent: typeof RefresherEventOrigin
226
291
  type RefresherEvent = RefresherEventOrigin
292
+ const UniPointerEvent: typeof UniPointerEventOrigin
293
+ type UniPointerEvent = UniPointerEventOrigin
227
294
  const PointerEvent: typeof PointerEventOrigin
228
- type PointerEvent = PointerEventOrigin
229
295
  const MouseEvent: typeof MouseEventOrigin
296
+ const UniMouseEvent: typeof UniMouseEventOrigin
297
+ type PointerEvent = PointerEventOrigin
230
298
  type MouseEvent = MouseEventOrigin
299
+ type UniMouseEvent = UniMouseEventOrigin
300
+ const UniPageScrollEvent: typeof UniPageScrollEventOrigin
301
+ type UniPageScrollEvent = UniPageScrollEventOrigin
231
302
  const PageScrollEvent: typeof PageScrollEventOrigin
232
303
  type PageScrollEvent = PageScrollEventOrigin
233
- const PageNode: typeof PageNodeOrigin
234
- type PageNode = PageNodeOrigin
304
+ type UniPageManager = UniPageManagerOrigin
305
+ type IPageManager = IPageManagerOrigin
306
+ const UniPageEvent: typeof UniPageEventOrigin
307
+ type UniPageEvent = UniPageEventOrigin
235
308
  const PageEvent: typeof PageEventOrigin
236
309
  type PageEvent = PageEventOrigin
237
- const NodeData: typeof NodeDataOrigin
238
- type NodeData = NodeDataOrigin
239
- type INodeData = INodeDataOrigin
310
+ type UniPage = UniPageOrigin
311
+ type IPage = IPageOrigin
312
+ const UniNestedPreScrollEvent: typeof UniNestedPreScrollEventOrigin
313
+ type UniNestedPreScrollEvent = UniNestedPreScrollEventOrigin
240
314
  const NestedPreScrollEvent: typeof NestedPreScrollEventOrigin
241
315
  type NestedPreScrollEvent = NestedPreScrollEventOrigin
242
- const NativeLoadFontFaceFail: typeof NativeLoadFontFaceFailOrigin
243
- type NativeLoadFontFaceFail = NativeLoadFontFaceFailOrigin
244
- const NativeLoadFontFaceOptions: typeof NativeLoadFontFaceOptionsOrigin
245
- type NativeLoadFontFaceOptions = NativeLoadFontFaceOptionsOrigin
316
+ const UniInputKeyboardHeightChangeEvent: typeof UniInputKeyboardHeightChangeEventOrigin
317
+ type UniInputKeyboardHeightChangeEvent = UniInputKeyboardHeightChangeEventOrigin
246
318
  const InputKeyboardHeightChangeEvent: typeof InputKeyboardHeightChangeEventOrigin
247
319
  type InputKeyboardHeightChangeEvent = InputKeyboardHeightChangeEventOrigin
320
+ const UniInputFocusEvent: typeof UniInputFocusEventOrigin
321
+ type UniInputFocusEvent = UniInputFocusEventOrigin
248
322
  const InputFocusEvent: typeof InputFocusEventOrigin
249
323
  type InputFocusEvent = InputFocusEventOrigin
324
+ const UniInputEvent: typeof UniInputEventOrigin
325
+ type UniInputEvent = UniInputEventOrigin
250
326
  const InputEvent: typeof InputEventOrigin
251
327
  type InputEvent = InputEventOrigin
328
+ const UniInputConfirmEvent: typeof UniInputConfirmEventOrigin
329
+ type UniInputConfirmEvent = UniInputConfirmEventOrigin
252
330
  const InputConfirmEvent: typeof InputConfirmEventOrigin
253
331
  type InputConfirmEvent = InputConfirmEventOrigin
332
+ const UniInputBlurEvent: typeof UniInputBlurEventOrigin
333
+ type UniInputBlurEvent = UniInputBlurEventOrigin
254
334
  const InputBlurEvent: typeof InputBlurEventOrigin
255
335
  type InputBlurEvent = InputBlurEventOrigin
336
+ const UniImageLoadEvent: typeof UniImageLoadEventOrigin
337
+ type UniImageLoadEvent = UniImageLoadEventOrigin
256
338
  const ImageLoadEvent: typeof ImageLoadEventOrigin
257
339
  type ImageLoadEvent = ImageLoadEventOrigin
340
+ const UniImageErrorEvent: typeof UniImageErrorEventOrigin
341
+ type UniImageErrorEvent = UniImageErrorEventOrigin
258
342
  const ImageErrorEvent: typeof ImageErrorEventOrigin
259
343
  type ImageErrorEvent = ImageErrorEventOrigin
344
+ const UniFormControlElement: typeof UniFormControlElementOrigin
345
+ type UniFormControlElement<T> = UniFormControlElementOrigin<T>
346
+ const UniEvent: typeof UniEventOrigin
347
+ type UniEvent = UniEventOrigin
348
+ const UniKeyEvent: typeof UniKeyEventOrigin
349
+ type UniKeyEvent = UniKeyEventOrigin
350
+ const Event: typeof EventOrigin
351
+ const KeyEvent: typeof KeyEventOrigin
352
+ type Event = EventOrigin
353
+ type KeyEvent = KeyEventOrigin
354
+ const UniError: typeof UniErrorOrigin
355
+ type UniError = UniErrorOrigin
356
+ const UniElementImpl: typeof UniElementImplOrigin
357
+ type UniElementImpl = UniElementImplOrigin
358
+ const UniViewElementImpl: typeof UniViewElementImplOrigin
359
+ type UniViewElementImpl = UniViewElementImplOrigin
360
+ type UniDocument = UniDocumentOrigin
361
+ type IDocument = IDocumentOrigin
362
+ const UniCustomEventOptions: typeof UniCustomEventOptionsOrigin
363
+ type UniCustomEventOptions<T> = UniCustomEventOptionsOrigin<T>
364
+ const UniCustomEvent: typeof UniCustomEventOrigin
365
+ type UniCustomEvent<T> = UniCustomEventOrigin<T>
366
+ const CustomEventOptions: typeof CustomEventOptionsOrigin
367
+ const CustomEvent: typeof CustomEventOrigin
368
+ type CustomEventOptions<T> = CustomEventOptionsOrigin<T>
369
+ type CustomEvent<T> = CustomEventOrigin<T>
370
+ const UniCallbackWrapper: typeof UniCallbackWrapperOrigin
371
+ type UniCallbackWrapper = UniCallbackWrapperOrigin
372
+ type UniApp = UniAppOrigin
373
+ type IApp = IAppOrigin
374
+ const UniAggregateError: typeof UniAggregateErrorOrigin
375
+ type UniAggregateError = UniAggregateErrorOrigin
376
+ type UTSAndroidHookProxy = UTSAndroidHookProxyOrigin
377
+ const SourceError: typeof SourceErrorOrigin
378
+ type SourceError = SourceErrorOrigin
379
+ const TakeSnapshotOptions: typeof TakeSnapshotOptionsOrigin
380
+ type TakeSnapshotOptions = TakeSnapshotOptionsOrigin
381
+ type TakeSnapshotSuccess = TakeSnapshotSuccessOrigin
382
+ type TakeSnapshotFail = TakeSnapshotFailOrigin
383
+ type TakeSnapshotSuccessCallback = TakeSnapshotSuccessCallbackOrigin
384
+ type TakeSnapshotFailCallback = TakeSnapshotFailCallbackOrigin
385
+ type TakeSnapshotCompleteCallback = TakeSnapshotCompleteCallbackOrigin
386
+ const PageNode: typeof PageNodeOrigin
387
+ type PageNode = PageNodeOrigin
388
+ const NodeData: typeof NodeDataOrigin
389
+ type NodeData = NodeDataOrigin
390
+ type INodeData = INodeDataOrigin
391
+ const NativeLoadFontFaceFail: typeof NativeLoadFontFaceFailOrigin
392
+ type NativeLoadFontFaceFail = NativeLoadFontFaceFailOrigin
393
+ const NativeLoadFontFaceOptions: typeof NativeLoadFontFaceOptionsOrigin
394
+ type NativeLoadFontFaceOptions = NativeLoadFontFaceOptionsOrigin
260
395
  type IUniError = IUniErrorOrigin
261
396
  type UniElement = UniElementOrigin
262
397
  type INode = INodeOrigin
@@ -282,18 +417,10 @@ declare global {
282
417
  type UniCommentElement = UniCommentElementOrigin
283
418
  type IComment = ICommentOrigin
284
419
  type INavigationBar = INavigationBarOrigin
285
- const Event: typeof EventOrigin
286
- type Event = EventOrigin
287
- const KeyEvent: typeof KeyEventOrigin
288
- type KeyEvent = KeyEventOrigin
289
420
  const DrawableContext: typeof DrawableContextOrigin
290
421
  type DrawableContext = DrawableContextOrigin
291
422
  const DOMRect: typeof DOMRectOrigin
292
423
  type DOMRect = DOMRectOrigin
293
- const CustomEventOptions: typeof CustomEventOptionsOrigin
294
- type CustomEventOptions<T> = CustomEventOptionsOrigin<T>
295
- const CustomEvent: typeof CustomEventOrigin
296
- type CustomEvent<T> = CustomEventOrigin<T>
297
424
  const CSSStyleDeclaration: typeof CSSStyleDeclarationOrigin
298
425
  type CSSStyleDeclaration = CSSStyleDeclarationOrigin
299
426
  type AsyncApiResult = AsyncApiResultOrigin
@@ -1,65 +1,65 @@
1
1
  // 本文件为自动构建生成
2
2
  export * from './WebViewStyles'
3
- export * from './WebViewMessageEvent'
4
- export * from './WebViewLoadingEvent'
5
- export * from './WebViewLoadedEvent'
6
- export * from './WebViewErrorEvent'
7
- export * from './WebViewDownloadEvent'
8
3
  export * from './ViewToTempFilePathOptions'
9
4
  export * from './UniWebViewServiceMessageEvent'
5
+ export * from './UniWebViewMessageEvent'
6
+ export * from './UniWebViewLoadingEvent'
7
+ export * from './UniWebViewLoadEvent'
8
+ export * from './UniWebViewErrorEvent'
10
9
  export * from './UniWebViewElement'
10
+ export * from './UniWebViewDownloadEvent'
11
11
  export * from './UniVideoElement'
12
+ export * from './UniTouchEvent'
13
+ export * from './UniTextareaLineChangeEvent'
14
+ export * from './UniTextareaFocusEvent'
15
+ export * from './UniTextareaBlurEvent'
12
16
  export * from './UniTextElement'
13
17
  export * from './UniTabsElement'
18
+ export * from './UniTabTapEvent'
19
+ export * from './UniSwiperTransitionEvent'
20
+ export * from './UniSwiperChangeEvent'
21
+ export * from './UniSwiperAnimationFinishEvent'
22
+ export * from './UniStopNestedScrollEvent'
23
+ export * from './UniStartNestedScrollEvent'
24
+ export * from './UniScrollToUpperEvent'
25
+ export * from './UniScrollToLowerEvent'
26
+ export * from './UniScrollEvent'
27
+ export * from './UniRichTextItemClickEvent'
28
+ export * from './UniResizeEvent'
29
+ export * from './UniRefresherEvent'
30
+ export * from './UniPointerEvent'
31
+ export * from './UniPageScrollEvent'
14
32
  export * from './UniPageManager'
33
+ export * from './UniPageEvent'
15
34
  export * from './UniPage'
35
+ export * from './UniNestedPreScrollEvent'
36
+ export * from './UniInputKeyboardHeightChangeEvent'
37
+ export * from './UniInputFocusEvent'
38
+ export * from './UniInputEvent'
39
+ export * from './UniInputConfirmEvent'
40
+ export * from './UniInputBlurEvent'
41
+ export * from './UniImageLoadEvent'
42
+ export * from './UniImageErrorEvent'
16
43
  export * from './UniFormControlElement'
17
44
  export * from './UniFormControl'
45
+ export * from './UniEvent'
18
46
  export * from './UniError'
19
47
  export * from './UniElement'
20
48
  export * from './UniDocument'
49
+ export * from './UniCustomEvent'
21
50
  export * from './UniCallbackWrapper'
22
51
  export * from './UniApp'
23
52
  export * from './UniAggregateError'
24
53
  export * from './UTSAndroidHookProxy'
25
- export * from './TouchEvent'
26
- export * from './TextareaLineChangeEvent'
27
- export * from './TextareaFocusEvent'
28
- export * from './TextareaBlurEvent'
29
- export * from './TabTapEvent'
30
- export * from './SwiperTransitionEvent'
31
- export * from './SwiperChangeEvent'
32
- export * from './SwiperAnimationFinishEvent'
33
- export * from './StopNestedScrollEvent'
34
- export * from './StartNestedScrollEvent'
35
54
  export * from './SourceError'
36
55
  export * from './SnapshotOptions'
37
- export * from './ScrollToUpperEvent'
38
- export * from './ScrollToLowerEvent'
39
- export * from './ScrollEvent'
40
- export * from './RichTextItemClickEvent'
41
- export * from './ResizeEvent'
42
- export * from './RefresherEvent'
43
- export * from './PointerEvent'
44
- export * from './PageScrollEvent'
45
56
  export * from './PageNode'
46
- export * from './PageEvent'
47
57
  export * from './NodeData'
48
- export * from './NestedPreScrollEvent'
49
58
  export * from './NativeLoadFontFaceOptions'
50
- export * from './InputKeyboardHeightChangeEvent'
51
- export * from './InputFocusEvent'
52
- export * from './InputEvent'
53
- export * from './InputConfirmEvent'
54
- export * from './InputBlurEvent'
55
- export * from './ImageLoadEvent'
56
- export * from './ImageErrorEvent'
57
59
  export * from './IUniError'
58
60
  export * from './IUniElement'
59
61
  export * from './INavigationBar'
60
- export * from './Event'
61
62
  export * from './DrawableContext'
62
63
  export * from './DOMRect'
63
- export * from './CustomEvent'
64
64
  export * from './CSSStyleDeclaration'
65
65
  export * from './AsyncApiResult'