@dcloudio/uni-app-x 0.7.120 → 0.7.122

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 (279) hide show
  1. package/README.md +87 -0
  2. package/package.json +1 -1
  3. package/types/app.d.ts +2 -1
  4. package/types/dom2-internal/UniCommon.d.ts +7 -2
  5. package/types/dom2-internal/UniNativeDefines.d.ts +7 -2
  6. package/types/dom2-internal/UniPage.d.ts +6 -0
  7. package/types/native/DrawableContext.d.ts +104 -52
  8. package/types/native/IUniElement.d.ts +4 -2
  9. package/types/node_modules/.package-lock.json +20 -0
  10. package/types/node_modules/typescript/LICENSE.txt +55 -0
  11. package/types/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  12. package/types/node_modules/typescript/bin/tsc +2 -0
  13. package/types/node_modules/typescript/bin/tsserver +2 -0
  14. package/types/node_modules/typescript/lib/cancellationToken.js +90 -0
  15. package/types/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +1880 -0
  16. package/types/node_modules/typescript/lib/de/diagnosticMessages.generated.json +1880 -0
  17. package/types/node_modules/typescript/lib/es/diagnosticMessages.generated.json +1880 -0
  18. package/types/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +1880 -0
  19. package/types/node_modules/typescript/lib/it/diagnosticMessages.generated.json +1880 -0
  20. package/types/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +1880 -0
  21. package/types/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +1880 -0
  22. package/types/node_modules/typescript/lib/lib.d.ts +22 -0
  23. package/types/node_modules/typescript/lib/lib.decorators.d.ts +386 -0
  24. package/types/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
  25. package/types/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +33 -0
  26. package/types/node_modules/typescript/lib/lib.dom.d.ts +28596 -0
  27. package/types/node_modules/typescript/lib/lib.dom.iterable.d.ts +475 -0
  28. package/types/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
  29. package/types/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
  30. package/types/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
  31. package/types/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
  32. package/types/node_modules/typescript/lib/lib.es2015.iterable.d.ts +495 -0
  33. package/types/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
  34. package/types/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
  35. package/types/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
  36. package/types/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
  37. package/types/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
  38. package/types/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
  39. package/types/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
  40. package/types/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
  41. package/types/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
  42. package/types/node_modules/typescript/lib/lib.es2017.d.ts +25 -0
  43. package/types/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
  44. package/types/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
  45. package/types/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
  46. package/types/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
  47. package/types/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
  48. package/types/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
  49. package/types/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
  50. package/types/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
  51. package/types/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +43 -0
  52. package/types/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
  53. package/types/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
  54. package/types/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
  55. package/types/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
  56. package/types/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
  57. package/types/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
  58. package/types/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
  59. package/types/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
  60. package/types/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
  61. package/types/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
  62. package/types/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
  63. package/types/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
  64. package/types/node_modules/typescript/lib/lib.es2020.bigint.d.ts +727 -0
  65. package/types/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
  66. package/types/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
  67. package/types/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
  68. package/types/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
  69. package/types/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
  70. package/types/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
  71. package/types/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +97 -0
  72. package/types/node_modules/typescript/lib/lib.es2020.string.d.ts +42 -0
  73. package/types/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +37 -0
  74. package/types/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
  75. package/types/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
  76. package/types/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
  77. package/types/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
  78. package/types/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
  79. package/types/node_modules/typescript/lib/lib.es2021.weakref.d.ts +76 -0
  80. package/types/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
  81. package/types/node_modules/typescript/lib/lib.es2022.d.ts +26 -0
  82. package/types/node_modules/typescript/lib/lib.es2022.error.d.ts +73 -0
  83. package/types/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
  84. package/types/node_modules/typescript/lib/lib.es2022.intl.d.ts +117 -0
  85. package/types/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
  86. package/types/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
  87. package/types/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts +39 -0
  88. package/types/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
  89. package/types/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
  90. package/types/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
  91. package/types/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
  92. package/types/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
  93. package/types/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
  94. package/types/node_modules/typescript/lib/lib.es5.d.ts +4585 -0
  95. package/types/node_modules/typescript/lib/lib.es6.d.ts +23 -0
  96. package/types/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
  97. package/types/node_modules/typescript/lib/lib.esnext.collection.d.ts +106 -0
  98. package/types/node_modules/typescript/lib/lib.esnext.d.ts +28 -0
  99. package/types/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
  100. package/types/node_modules/typescript/lib/lib.esnext.disposable.d.ts +185 -0
  101. package/types/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
  102. package/types/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
  103. package/types/node_modules/typescript/lib/lib.esnext.object.d.ts +29 -0
  104. package/types/node_modules/typescript/lib/lib.esnext.promise.d.ts +35 -0
  105. package/types/node_modules/typescript/lib/lib.esnext.regexp.d.ts +25 -0
  106. package/types/node_modules/typescript/lib/lib.esnext.string.d.ts +29 -0
  107. package/types/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
  108. package/types/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +33 -0
  109. package/types/node_modules/typescript/lib/lib.webworker.d.ts +9431 -0
  110. package/types/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
  111. package/types/node_modules/typescript/lib/lib.webworker.iterable.d.ts +276 -0
  112. package/types/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +1880 -0
  113. package/types/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +1880 -0
  114. package/types/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +1880 -0
  115. package/types/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +1880 -0
  116. package/types/node_modules/typescript/lib/tsc.js +129741 -0
  117. package/types/node_modules/typescript/lib/tsserver.js +621 -0
  118. package/types/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
  119. package/types/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  120. package/types/node_modules/typescript/lib/typesMap.json +497 -0
  121. package/types/node_modules/typescript/lib/typescript.d.ts +11240 -0
  122. package/types/node_modules/typescript/lib/typescript.js +194910 -0
  123. package/types/node_modules/typescript/lib/typingsInstaller.js +236 -0
  124. package/types/node_modules/typescript/lib/watchGuard.js +53 -0
  125. package/types/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +1880 -0
  126. package/types/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +1880 -0
  127. package/types/node_modules/typescript/package.json +116 -0
  128. package/types/page.d.ts +2 -2
  129. package/types/uni/env/index.d.ts +2 -1
  130. package/types/uni/uts-plugin-api/global.d.ts +8 -0
  131. package/types/uni/uts-plugin-api/index.d.ts +8 -0
  132. package/types/uni/uts-plugin-api/lib/uni-accelerometer/utssdk/global.d.ts +35 -0
  133. package/types/uni/uts-plugin-api/lib/uni-accelerometer/utssdk/index.d.ts +17 -0
  134. package/types/uni/uts-plugin-api/lib/uni-accelerometer/utssdk/interface.d.ts +359 -0
  135. package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/interface.d.ts +323 -1294
  136. package/types/uni/uts-plugin-api/lib/uni-calendar/utssdk/global.d.ts +35 -0
  137. package/types/uni/uts-plugin-api/lib/uni-calendar/utssdk/index.d.ts +17 -0
  138. package/types/uni/uts-plugin-api/lib/uni-calendar/utssdk/interface.d.ts +944 -0
  139. package/types/uni/uts-plugin-api/lib/uni-canvas-dom2/utssdk/interface.d.ts +2 -1
  140. package/types/uni/{uts-plugin-extend → uts-plugin-api}/lib/uni-compass/utssdk/global.d.ts +16 -6
  141. package/types/uni/{uts-plugin-extend → uts-plugin-api}/lib/uni-compass/utssdk/index.d.ts +9 -3
  142. package/types/uni/uts-plugin-api/lib/uni-compass/utssdk/interface.d.ts +353 -0
  143. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/global.d.ts +0 -2
  144. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/index.d.ts +0 -1
  145. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/interface.d.ts +0 -1
  146. package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/global.d.ts +2 -0
  147. package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/index.d.ts +1 -0
  148. package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/interface.d.ts +144 -110
  149. package/types/uni/uts-plugin-api/lib/uni-getElementById/utssdk/interface.d.ts +1 -0
  150. package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +72 -531
  151. package/types/uni/uts-plugin-api/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +72 -531
  152. package/types/uni/uts-plugin-api/lib/uni-gyroscope/utssdk/global.d.ts +35 -0
  153. package/types/uni/uts-plugin-api/lib/uni-gyroscope/utssdk/index.d.ts +17 -0
  154. package/types/uni/uts-plugin-api/lib/uni-gyroscope/utssdk/interface.d.ts +362 -0
  155. package/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/interface.d.ts +6 -6
  156. package/types/uni/uts-plugin-api/lib/uni-makePhoneCall/utssdk/interface.d.ts +72 -68
  157. package/types/uni/uts-plugin-api/lib/uni-memorywarning/utssdk/global.d.ts +21 -0
  158. package/types/uni/uts-plugin-api/lib/uni-memorywarning/utssdk/index.d.ts +10 -0
  159. package/types/uni/uts-plugin-api/lib/uni-memorywarning/utssdk/interface.d.ts +20 -0
  160. package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/global.d.ts +8 -12
  161. package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/index.d.ts +4 -6
  162. package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/interface.d.ts +1741 -905
  163. package/types/uni/uts-plugin-api/lib/uni-oauth/utssdk/interface.d.ts +12 -12
  164. package/types/uni/uts-plugin-api/lib/uni-openLocation/utssdk/global.d.ts +23 -0
  165. package/types/uni/uts-plugin-api/lib/uni-openLocation/utssdk/index.d.ts +11 -0
  166. package/types/uni/uts-plugin-api/lib/uni-openLocation/utssdk/interface.d.ts +418 -0
  167. package/types/uni/uts-plugin-api/lib/uni-phoneContact/utssdk/global.d.ts +49 -0
  168. package/types/uni/uts-plugin-api/lib/uni-phoneContact/utssdk/index.d.ts +24 -0
  169. package/types/uni/uts-plugin-api/lib/uni-phoneContact/utssdk/interface.d.ts +349 -0
  170. package/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/global.d.ts +2 -0
  171. package/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/index.d.ts +1 -0
  172. package/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/interface.d.ts +83 -124
  173. package/types/uni/uts-plugin-api/lib/uni-screenBrightness/utssdk/interface.d.ts +1157 -830
  174. package/types/uni/uts-plugin-api/lib/uni-share/utssdk/interface.d.ts +936 -335
  175. package/types/uni/uts-plugin-api/lib/uni-showLoading/utssdk/global.d.ts +8 -0
  176. package/types/uni/uts-plugin-api/lib/uni-showLoading/utssdk/index.d.ts +4 -0
  177. package/types/uni/uts-plugin-api/lib/uni-showLoading/utssdk/interface.d.ts +1155 -1142
  178. package/types/uni/uts-plugin-api/lib/uni-vibrate/utssdk/global.d.ts +27 -0
  179. package/types/uni/uts-plugin-api/lib/uni-vibrate/utssdk/index.d.ts +13 -0
  180. package/types/uni/uts-plugin-api/lib/uni-vibrate/utssdk/interface.d.ts +88 -0
  181. package/types/uni/uts-plugin-api/lib/uni-web-view/utssdk/interface.d.ts +6 -6
  182. package/types/uni/uts-plugin-biz/global.d.ts +9 -0
  183. package/types/uni/uts-plugin-biz/index.d.ts +9 -0
  184. package/types/uni/uts-plugin-biz/lib/uni-accelerometer/utssdk/global.d.ts +35 -0
  185. package/types/uni/uts-plugin-biz/lib/uni-accelerometer/utssdk/index.d.ts +17 -0
  186. package/types/uni/uts-plugin-biz/lib/uni-accelerometer/utssdk/interface.d.ts +359 -0
  187. package/types/uni/uts-plugin-biz/lib/uni-authentication/utssdk/global.d.ts +59 -0
  188. package/types/uni/uts-plugin-biz/lib/uni-authentication/utssdk/index.d.ts +29 -0
  189. package/types/uni/uts-plugin-biz/lib/uni-authentication/utssdk/interface.d.ts +371 -0
  190. package/types/uni/uts-plugin-biz/lib/uni-calendar/utssdk/global.d.ts +35 -0
  191. package/types/uni/uts-plugin-biz/lib/uni-calendar/utssdk/index.d.ts +17 -0
  192. package/types/uni/uts-plugin-biz/lib/uni-calendar/utssdk/interface.d.ts +944 -0
  193. package/types/uni/uts-plugin-biz/lib/uni-compass/utssdk/global.d.ts +35 -0
  194. package/types/uni/uts-plugin-biz/lib/uni-compass/utssdk/index.d.ts +17 -0
  195. package/types/uni/uts-plugin-biz/lib/uni-compass/utssdk/interface.d.ts +353 -0
  196. package/types/uni/uts-plugin-biz/lib/uni-gyroscope/utssdk/global.d.ts +35 -0
  197. package/types/uni/uts-plugin-biz/lib/uni-gyroscope/utssdk/index.d.ts +17 -0
  198. package/types/uni/uts-plugin-biz/lib/uni-gyroscope/utssdk/interface.d.ts +362 -0
  199. package/types/uni/uts-plugin-biz/lib/uni-memorywarning/utssdk/global.d.ts +21 -0
  200. package/types/uni/uts-plugin-biz/lib/uni-memorywarning/utssdk/index.d.ts +10 -0
  201. package/types/uni/uts-plugin-biz/lib/uni-memorywarning/utssdk/interface.d.ts +20 -0
  202. package/types/uni/uts-plugin-biz/lib/uni-phoneContact/utssdk/global.d.ts +49 -0
  203. package/types/uni/uts-plugin-biz/lib/uni-phoneContact/utssdk/index.d.ts +24 -0
  204. package/types/uni/uts-plugin-biz/lib/uni-phoneContact/utssdk/interface.d.ts +349 -0
  205. package/types/uni/uts-plugin-biz/lib/uni-screenBrightness/utssdk/global.d.ts +57 -0
  206. package/types/uni/uts-plugin-biz/lib/uni-screenBrightness/utssdk/index.d.ts +28 -0
  207. package/types/uni/uts-plugin-biz/lib/uni-screenBrightness/utssdk/interface.d.ts +1172 -0
  208. package/types/uni/uts-plugin-biz/lib/uni-verify/utssdk/interface.d.ts +6 -1
  209. package/types/uni/uts-plugin-biz/lib/uni-vibrate/utssdk/global.d.ts +27 -0
  210. package/types/uni/uts-plugin-biz/lib/uni-vibrate/utssdk/index.d.ts +13 -0
  211. package/types/uni/uts-plugin-biz/lib/uni-vibrate/utssdk/interface.d.ts +88 -0
  212. package/types/uni/uts-plugin-component/global.d.ts +8 -1
  213. package/types/uni/uts-plugin-component/index.d.ts +8 -1
  214. package/types/uni/uts-plugin-component/lib/uni-accelerometer/utssdk/global.d.ts +35 -0
  215. package/types/uni/uts-plugin-component/lib/uni-accelerometer/utssdk/index.d.ts +17 -0
  216. package/types/uni/uts-plugin-component/lib/uni-accelerometer/utssdk/interface.d.ts +359 -0
  217. package/types/uni/uts-plugin-component/lib/uni-authentication/utssdk/interface.d.ts +1342 -371
  218. package/types/uni/uts-plugin-component/lib/uni-calendar/utssdk/global.d.ts +35 -0
  219. package/types/uni/uts-plugin-component/lib/uni-calendar/utssdk/index.d.ts +17 -0
  220. package/types/uni/uts-plugin-component/lib/uni-calendar/utssdk/interface.d.ts +944 -0
  221. package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/interface.d.ts +2 -1
  222. package/types/uni/uts-plugin-component/lib/uni-compass/utssdk/global.d.ts +35 -0
  223. package/types/uni/uts-plugin-component/lib/uni-compass/utssdk/index.d.ts +17 -0
  224. package/types/uni/uts-plugin-component/lib/uni-compass/utssdk/interface.d.ts +353 -0
  225. package/types/uni/uts-plugin-component/lib/uni-dialogPage/utssdk/global.d.ts +0 -2
  226. package/types/uni/uts-plugin-component/lib/uni-dialogPage/utssdk/index.d.ts +0 -1
  227. package/types/uni/uts-plugin-component/lib/uni-dialogPage/utssdk/interface.d.ts +0 -1
  228. package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/global.d.ts +2 -0
  229. package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/index.d.ts +1 -0
  230. package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/interface.d.ts +144 -110
  231. package/types/uni/uts-plugin-component/lib/uni-editor-global/utssdk/interface.d.ts +15 -5
  232. package/types/uni/uts-plugin-component/lib/uni-form-global/utssdk/interface.d.ts +1 -1
  233. package/types/uni/uts-plugin-component/lib/uni-getElementById/utssdk/interface.d.ts +1 -0
  234. package/types/uni/uts-plugin-component/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +531 -72
  235. package/types/uni/uts-plugin-component/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +531 -72
  236. package/types/uni/uts-plugin-component/lib/uni-gyroscope/utssdk/global.d.ts +35 -0
  237. package/types/uni/uts-plugin-component/lib/uni-gyroscope/utssdk/index.d.ts +17 -0
  238. package/types/uni/uts-plugin-component/lib/uni-gyroscope/utssdk/interface.d.ts +362 -0
  239. package/types/uni/uts-plugin-component/lib/uni-keyboard/utssdk/interface.d.ts +6 -6
  240. package/types/uni/uts-plugin-component/lib/uni-makePhoneCall/utssdk/interface.d.ts +73 -67
  241. package/types/uni/uts-plugin-component/lib/uni-match-media-global/utssdk/interface.d.ts +1 -1
  242. package/types/uni/uts-plugin-component/lib/uni-memorywarning/utssdk/global.d.ts +21 -0
  243. package/types/uni/uts-plugin-component/lib/uni-memorywarning/utssdk/index.d.ts +10 -0
  244. package/types/uni/uts-plugin-component/lib/uni-memorywarning/utssdk/interface.d.ts +20 -0
  245. package/types/uni/uts-plugin-component/lib/uni-modal/utssdk/global.d.ts +8 -12
  246. package/types/uni/uts-plugin-component/lib/uni-modal/utssdk/index.d.ts +4 -6
  247. package/types/uni/uts-plugin-component/lib/uni-modal/utssdk/interface.d.ts +1743 -291
  248. package/types/uni/uts-plugin-component/lib/uni-navigator-global/utssdk/interface.d.ts +1 -1
  249. package/types/uni/uts-plugin-component/lib/uni-oauth/utssdk/interface.d.ts +12 -12
  250. package/types/uni/uts-plugin-component/lib/uni-openLocation/utssdk/global.d.ts +23 -0
  251. package/types/uni/uts-plugin-component/lib/uni-openLocation/utssdk/index.d.ts +11 -0
  252. package/types/uni/uts-plugin-component/lib/uni-openLocation/utssdk/interface.d.ts +420 -0
  253. package/types/uni/uts-plugin-component/lib/uni-phoneContact/utssdk/global.d.ts +49 -0
  254. package/types/uni/uts-plugin-component/lib/uni-phoneContact/utssdk/index.d.ts +24 -0
  255. package/types/uni/uts-plugin-component/lib/uni-phoneContact/utssdk/interface.d.ts +349 -0
  256. package/types/uni/uts-plugin-component/lib/uni-privacy/utssdk/global.d.ts +2 -0
  257. package/types/uni/uts-plugin-component/lib/uni-privacy/utssdk/index.d.ts +1 -0
  258. package/types/uni/uts-plugin-component/lib/uni-privacy/utssdk/interface.d.ts +132 -75
  259. package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/interface.d.ts +1 -1
  260. package/types/uni/uts-plugin-component/lib/uni-screenBrightness/utssdk/interface.d.ts +1175 -314
  261. package/types/uni/uts-plugin-component/lib/uni-share/utssdk/interface.d.ts +936 -335
  262. package/types/uni/uts-plugin-component/lib/uni-showLoading/utssdk/global.d.ts +8 -0
  263. package/types/uni/uts-plugin-component/lib/uni-showLoading/utssdk/index.d.ts +4 -0
  264. package/types/uni/uts-plugin-component/lib/uni-showLoading/utssdk/interface.d.ts +1617 -446
  265. package/types/uni/uts-plugin-component/lib/uni-vibrate/utssdk/global.d.ts +27 -0
  266. package/types/uni/uts-plugin-component/lib/uni-vibrate/utssdk/index.d.ts +13 -0
  267. package/types/uni/uts-plugin-component/lib/uni-vibrate/utssdk/interface.d.ts +88 -0
  268. package/types/uni/uts-plugin-component/lib/uni-web-view/utssdk/interface.d.ts +6 -6
  269. package/types/uni/uts-plugin-extend/global.d.ts +0 -1
  270. package/types/uni/uts-plugin-extend/index.d.ts +0 -1
  271. package/types/uni/uts-plugin-extend/lib/uni-openLocation/utssdk/interface.d.ts +2 -1
  272. package/types/vue/LifeCycle.d.ts +2 -2
  273. package/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/global.d.ts +0 -12
  274. package/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/index.d.ts +0 -1
  275. package/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/interface.d.ts +0 -917
  276. package/types/uni/uts-plugin-extend/lib/uni-compass/utssdk/interface.d.ts +0 -1095
  277. package/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/global.d.ts +0 -9
  278. package/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/index.d.ts +0 -1
  279. package/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/interface.d.ts +0 -253
@@ -21,7 +21,7 @@ export type OnLaunchOptions = {
21
21
  * "osVer": "3,0",
22
22
  * "uniVer": "4.31",
23
23
  * "unixVer": "4.61",
24
- * "unixVaporVer": "x"
24
+ * "unixVaporVer": "5.0"
25
25
  * }
26
26
  * },
27
27
  * "mp": {
@@ -95,7 +95,7 @@ export type OnLaunchOptions = {
95
95
  * "osVer": "5.0.0",
96
96
  * "uniVer": "4.81",
97
97
  * "unixVer": "4.81",
98
- * "unixVaporVer": "x"
98
+ * "unixVaporVer": "5.0"
99
99
  * }
100
100
  * },
101
101
  * "mp": {
@@ -169,7 +169,7 @@ export type OnLaunchOptions = {
169
169
  * "osVer": "5.0.0",
170
170
  * "uniVer": "4.81",
171
171
  * "unixVer": "4.81",
172
- * "unixVaporVer": "x"
172
+ * "unixVaporVer": "5.0"
173
173
  * }
174
174
  * },
175
175
  * "mp": {
@@ -243,7 +243,7 @@ export type OnLaunchOptions = {
243
243
  * "osVer": "5.0.0",
244
244
  * "uniVer": "4.81",
245
245
  * "unixVer": "4.81",
246
- * "unixVaporVer": "x"
246
+ * "unixVaporVer": "5.0"
247
247
  * }
248
248
  * },
249
249
  * "mp": {
@@ -294,7 +294,316 @@ export type OnLaunchOptions = {
294
294
  * }
295
295
  * }
296
296
  */
297
- query?: UTSJSONObject | null
297
+ query?: UTSJSONObject | null
298
+ /**
299
+ * 需要基础库: `2.20.0`
300
+ *
301
+ * API 类别
302
+ *
303
+ * 可选值:
304
+ * - 'default': 默认类别;
305
+ * - 'nativeFunctionalized': 原生功能化,视频号直播商品、商品橱窗等场景打开的小程序;
306
+ * - 'browseOnly': 仅浏览,朋友圈快照页等场景打开的小程序;
307
+ * - 'embedded': 内嵌,通过打开半屏小程序能力打开的小程序;
308
+ * - 'chatTool': 聊天工具,通过打开聊天工具能力打开的小程序;
309
+ *
310
+ * @uniPlatform {
311
+ * "mp": {
312
+ * "weixin": {
313
+ * "hostVer": "2.20.0",
314
+ * "uniVer": "√",
315
+ * "unixVer": "4.41"
316
+ * },
317
+ * "alipay": {
318
+ * "hostVer": "-",
319
+ * "uniVer": "-",
320
+ * "unixVer": "-"
321
+ * },
322
+ * "baidu": {
323
+ * "hostVer": "-",
324
+ * "uniVer": "-",
325
+ * "unixVer": "-"
326
+ * },
327
+ * "toutiao": {
328
+ * "hostVer": "-",
329
+ * "uniVer": "-",
330
+ * "unixVer": "-"
331
+ * },
332
+ * "lark": {
333
+ * "hostVer": "-",
334
+ * "uniVer": "-",
335
+ * "unixVer": "-"
336
+ * },
337
+ * "qq": {
338
+ * "hostVer": "-",
339
+ * "uniVer": "-",
340
+ * "unixVer": "-"
341
+ * },
342
+ * "kuaishou": {
343
+ * "hostVer": "-",
344
+ * "uniVer": "-",
345
+ * "unixVer": "-"
346
+ * },
347
+ * "jd": {
348
+ * "hostVer": "-",
349
+ * "uniVer": "-",
350
+ * "unixVer": "-"
351
+ * }
352
+ * }
353
+ * }
354
+ */
355
+ apiCategory?: "default" | "nativeFunctionalized" | "browseOnly" | "embedded" | "chatTool" | null;
356
+ /**
357
+ * 打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数
358
+ *
359
+ * @uniPlatform {
360
+ * "mp": {
361
+ * "weixin": {
362
+ * "hostVer": "√",
363
+ * "uniVer": "√",
364
+ * "unixVer": "4.41"
365
+ * },
366
+ * "alipay": {
367
+ * "hostVer": "-",
368
+ * "uniVer": "-",
369
+ * "unixVer": "-"
370
+ * },
371
+ * "baidu": {
372
+ * "hostVer": "-",
373
+ * "uniVer": "-",
374
+ * "unixVer": "-"
375
+ * },
376
+ * "toutiao": {
377
+ * "hostVer": "-",
378
+ * "uniVer": "-",
379
+ * "unixVer": "-"
380
+ * },
381
+ * "lark": {
382
+ * "hostVer": "-",
383
+ * "uniVer": "-",
384
+ * "unixVer": "-"
385
+ * },
386
+ * "qq": {
387
+ * "hostVer": "-",
388
+ * "uniVer": "-",
389
+ * "unixVer": "-"
390
+ * },
391
+ * "kuaishou": {
392
+ * "hostVer": "-",
393
+ * "uniVer": "-",
394
+ * "unixVer": "-"
395
+ * },
396
+ * "jd": {
397
+ * "hostVer": "-",
398
+ * "uniVer": "-",
399
+ * "unixVer": "-"
400
+ * }
401
+ * }
402
+ * }
403
+ */
404
+ forwardMaterials?: any | null;
405
+ /**
406
+ * 来源信息。从另一个小程序、公众号或 App 进入小程序时返回。否则返回 `{}`。(参见后文注意)
407
+ *
408
+ * @uniPlatform {
409
+ * "mp": {
410
+ * "weixin": {
411
+ * "hostVer": "√",
412
+ * "uniVer": "√",
413
+ * "unixVer": "4.41"
414
+ * },
415
+ * "alipay": {
416
+ * "hostVer": "-",
417
+ * "uniVer": "-",
418
+ * "unixVer": "-"
419
+ * },
420
+ * "baidu": {
421
+ * "hostVer": "-",
422
+ * "uniVer": "-",
423
+ * "unixVer": "-"
424
+ * },
425
+ * "toutiao": {
426
+ * "hostVer": "-",
427
+ * "uniVer": "-",
428
+ * "unixVer": "-"
429
+ * },
430
+ * "lark": {
431
+ * "hostVer": "-",
432
+ * "uniVer": "-",
433
+ * "unixVer": "-"
434
+ * },
435
+ * "qq": {
436
+ * "hostVer": "-",
437
+ * "uniVer": "-",
438
+ * "unixVer": "-"
439
+ * },
440
+ * "kuaishou": {
441
+ * "hostVer": "-",
442
+ * "uniVer": "-",
443
+ * "unixVer": "-"
444
+ * },
445
+ * "jd": {
446
+ * "hostVer": "-",
447
+ * "uniVer": "-",
448
+ * "unixVer": "-"
449
+ * }
450
+ * }
451
+ * }
452
+ */
453
+ referrerInfo?: OnLaunchOptionsReferrerInfo | null;
454
+ /**
455
+ * @tutorial_weixin https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/scene.html
456
+ *
457
+ * @uniPlatform {
458
+ * "mp": {
459
+ * "weixin": {
460
+ * "hostVer": "√",
461
+ * "uniVer": "√",
462
+ * "unixVer": "4.41"
463
+ * },
464
+ * "alipay": {
465
+ * "hostVer": "-",
466
+ * "uniVer": "-",
467
+ * "unixVer": "-"
468
+ * },
469
+ * "baidu": {
470
+ * "hostVer": "-",
471
+ * "uniVer": "-",
472
+ * "unixVer": "-"
473
+ * },
474
+ * "toutiao": {
475
+ * "hostVer": "-",
476
+ * "uniVer": "-",
477
+ * "unixVer": "-"
478
+ * },
479
+ * "lark": {
480
+ * "hostVer": "-",
481
+ * "uniVer": "-",
482
+ * "unixVer": "-"
483
+ * },
484
+ * "qq": {
485
+ * "hostVer": "-",
486
+ * "uniVer": "-",
487
+ * "unixVer": "-"
488
+ * },
489
+ * "kuaishou": {
490
+ * "hostVer": "-",
491
+ * "uniVer": "-",
492
+ * "unixVer": "-"
493
+ * },
494
+ * "jd": {
495
+ * "hostVer": "-",
496
+ * "uniVer": "-",
497
+ * "unixVer": "-"
498
+ * }
499
+ * }
500
+ * }
501
+ */
502
+ scene?: number | null;
503
+ /**
504
+ * 从微信群聊/单聊打开小程序时,chatType 表示具体微信群聊/单聊类型
505
+ *
506
+ * 可选值:
507
+ * - 1: 微信联系人单聊;
508
+ * - 2: 企业微信联系人单聊;
509
+ * - 3: 普通微信群聊;
510
+ * - 4: 企业微信互通群聊;
511
+ *
512
+ * @uniPlatform {
513
+ * "mp": {
514
+ * "weixin": {
515
+ * "hostVer": "√",
516
+ * "uniVer": "√",
517
+ * "unixVer": "4.41"
518
+ * },
519
+ * "alipay": {
520
+ * "hostVer": "-",
521
+ * "uniVer": "-",
522
+ * "unixVer": "-"
523
+ * },
524
+ * "baidu": {
525
+ * "hostVer": "-",
526
+ * "uniVer": "-",
527
+ * "unixVer": "-"
528
+ * },
529
+ * "toutiao": {
530
+ * "hostVer": "-",
531
+ * "uniVer": "-",
532
+ * "unixVer": "-"
533
+ * },
534
+ * "lark": {
535
+ * "hostVer": "-",
536
+ * "uniVer": "-",
537
+ * "unixVer": "-"
538
+ * },
539
+ * "qq": {
540
+ * "hostVer": "-",
541
+ * "uniVer": "-",
542
+ * "unixVer": "-"
543
+ * },
544
+ * "kuaishou": {
545
+ * "hostVer": "-",
546
+ * "uniVer": "-",
547
+ * "unixVer": "-"
548
+ * },
549
+ * "jd": {
550
+ * "hostVer": "-",
551
+ * "uniVer": "-",
552
+ * "unixVer": "-"
553
+ * }
554
+ * }
555
+ * }
556
+ */
557
+ chatType?: 1 | 2 | 3 | 4 | null;
558
+ /**
559
+ * @tutorial_weixin https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html#获取更多转发信息
560
+ *
561
+ * @uniPlatform {
562
+ * "mp": {
563
+ * "weixin": {
564
+ * "hostVer": "√",
565
+ * "uniVer": "√",
566
+ * "unixVer": "4.41"
567
+ * },
568
+ * "alipay": {
569
+ * "hostVer": "-",
570
+ * "uniVer": "-",
571
+ * "unixVer": "-"
572
+ * },
573
+ * "baidu": {
574
+ * "hostVer": "-",
575
+ * "uniVer": "-",
576
+ * "unixVer": "-"
577
+ * },
578
+ * "toutiao": {
579
+ * "hostVer": "-",
580
+ * "uniVer": "-",
581
+ * "unixVer": "-"
582
+ * },
583
+ * "lark": {
584
+ * "hostVer": "-",
585
+ * "uniVer": "-",
586
+ * "unixVer": "-"
587
+ * },
588
+ * "qq": {
589
+ * "hostVer": "-",
590
+ * "uniVer": "-",
591
+ * "unixVer": "-"
592
+ * },
593
+ * "kuaishou": {
594
+ * "hostVer": "-",
595
+ * "uniVer": "-",
596
+ * "unixVer": "-"
597
+ * },
598
+ * "jd": {
599
+ * "hostVer": "-",
600
+ * "uniVer": "-",
601
+ * "unixVer": "-"
602
+ * }
603
+ * }
604
+ * }
605
+ */
606
+ shareTicket?: string | null;
298
607
  }
299
608
 
300
609
  export type GetLaunchOptionsSync = () => OnLaunchOptions
@@ -306,72 +615,222 @@ export interface Uni {
306
615
  * @tutorial https://doc.dcloud.net.cn/uni-app-x/api/get-launch-options-sync.html
307
616
  * @tutorial_uni_app_x https://doc.dcloud.net.cn/uni-app-x/api/get-launch-options-sync.html
308
617
  * @tutorial_uni_app https://uniapp.dcloud.net.cn/api/getLaunchOptionsSync.html
309
- * @uniPlatform {
310
- * "app": {
311
- * "android": {
312
- * "osVer": "5.0",
313
- * "uniVer": "√",
314
- * "unixVer": "3.91"
315
- * },
316
- * "ios": {
317
- * "osVer": "12.0",
318
- * "uniVer": "√",
319
- * "unixVer": "4.11"
320
- * },
321
- * "harmony": {
322
- * "osVer": "3,0",
323
- * "uniVer": "4.31",
324
- * "unixVer": "4.61",
325
- * "unixVaporVer": "x"
326
- * }
327
- * },
328
- * "mp": {
329
- * "weixin": {
330
- * "hostVer": "",
331
- * "uniVer": "√",
332
- * "unixVer": "4.41"
333
- * },
334
- * "alipay": {
335
- * "hostVer": "√",
336
- * "uniVer": "√",
337
- * "unixVer": "x"
338
- * },
339
- * "baidu": {
340
- * "hostVer": "√",
341
- * "uniVer": "√",
342
- * "unixVer": "x"
343
- * },
344
- * "toutiao": {
345
- * "hostVer": "√",
346
- * "uniVer": "√",
347
- * "unixVer": "x"
348
- * },
349
- * "lark": {
350
- * "hostVer": "√",
351
- * "uniVer": "√",
352
- * "unixVer": "x"
353
- * },
354
- * "qq": {
355
- * "hostVer": "√",
356
- * "uniVer": "√",
357
- * "unixVer": "x"
358
- * },
359
- * "kuaishou": {
360
- * "hostVer": "√",
361
- * "uniVer": "√",
362
- * "unixVer": "x"
363
- * },
364
- * "jd": {
365
- * "hostVer": "√",
366
- * "uniVer": "√",
367
- * "unixVer": "x"
368
- * }
369
- * },
370
- * "web": {
371
- * "uniVer": "√",
372
- * "unixVer": "4.0"
373
- * }
374
- * }
618
+ * @uniPlatform {
619
+ * "app": {
620
+ * "android": {
621
+ * "osVer": "5.0",
622
+ * "uniVer": "√",
623
+ * "unixVer": "3.91"
624
+ * },
625
+ * "ios": {
626
+ * "osVer": "12.0",
627
+ * "uniVer": "√",
628
+ * "unixVer": "4.11"
629
+ * },
630
+ * "harmony": {
631
+ * "osVer": "3,0",
632
+ * "uniVer": "4.31",
633
+ * "unixVer": "4.61",
634
+ * "unixVaporVer": "5.0"
635
+ * }
636
+ * },
637
+ * "mp": {
638
+ * "weixin": {
639
+ * "hostVer": "2.1.2",
640
+ * "uniVer": "√",
641
+ * "unixVer": "4.41"
642
+ * },
643
+ * "alipay": {
644
+ * "hostVer": "√",
645
+ * "uniVer": "√",
646
+ * "unixVer": "x"
647
+ * },
648
+ * "baidu": {
649
+ * "hostVer": "√",
650
+ * "uniVer": "√",
651
+ * "unixVer": "x"
652
+ * },
653
+ * "toutiao": {
654
+ * "hostVer": "√",
655
+ * "uniVer": "√",
656
+ * "unixVer": "x"
657
+ * },
658
+ * "lark": {
659
+ * "hostVer": "√",
660
+ * "uniVer": "√",
661
+ * "unixVer": "x"
662
+ * },
663
+ * "qq": {
664
+ * "hostVer": "√",
665
+ * "uniVer": "√",
666
+ * "unixVer": "x"
667
+ * },
668
+ * "kuaishou": {
669
+ * "hostVer": "√",
670
+ * "uniVer": "√",
671
+ * "unixVer": "x"
672
+ * },
673
+ * "jd": {
674
+ * "hostVer": "√",
675
+ * "uniVer": "√",
676
+ * "unixVer": "x"
677
+ * }
678
+ * },
679
+ * "web": {
680
+ * "uniVer": "√",
681
+ * "unixVer": "4.0"
682
+ * }
683
+ * }
684
+ * @tutorial_weixin https://developers.weixin.qq.com/miniprogram/dev/api/base/app/life-cycle/wx.getLaunchOptionsSync.html
375
685
  */
376
686
  getLaunchOptionsSync(): OnLaunchOptions
377
- }
687
+ }
688
+
689
+ /**
690
+ * 来源信息。从另一个小程序、公众号或 App 进入小程序时返回。否则返回 `{}`。(参见后文注意)
691
+ *
692
+ * @uniPlatform {
693
+ * "mp": {
694
+ * "weixin": {
695
+ * "hostVer": "√",
696
+ * "uniVer": "√",
697
+ * "unixVer": "4.41"
698
+ * },
699
+ * "alipay": {
700
+ * "hostVer": "-",
701
+ * "uniVer": "-",
702
+ * "unixVer": "-"
703
+ * },
704
+ * "baidu": {
705
+ * "hostVer": "-",
706
+ * "uniVer": "-",
707
+ * "unixVer": "-"
708
+ * },
709
+ * "toutiao": {
710
+ * "hostVer": "-",
711
+ * "uniVer": "-",
712
+ * "unixVer": "-"
713
+ * },
714
+ * "lark": {
715
+ * "hostVer": "-",
716
+ * "uniVer": "-",
717
+ * "unixVer": "-"
718
+ * },
719
+ * "qq": {
720
+ * "hostVer": "-",
721
+ * "uniVer": "-",
722
+ * "unixVer": "-"
723
+ * },
724
+ * "kuaishou": {
725
+ * "hostVer": "-",
726
+ * "uniVer": "-",
727
+ * "unixVer": "-"
728
+ * },
729
+ * "jd": {
730
+ * "hostVer": "-",
731
+ * "uniVer": "-",
732
+ * "unixVer": "-"
733
+ * }
734
+ * }
735
+ * }
736
+ */
737
+ export type OnLaunchOptionsReferrerInfo = {
738
+ /**
739
+ * 来源小程序、公众号或 App 的 appId
740
+ *
741
+ * @uniPlatform {
742
+ * "mp": {
743
+ * "weixin": {
744
+ * "hostVer": "√",
745
+ * "uniVer": "√",
746
+ * "unixVer": "4.41"
747
+ * },
748
+ * "alipay": {
749
+ * "hostVer": "-",
750
+ * "uniVer": "-",
751
+ * "unixVer": "-"
752
+ * },
753
+ * "baidu": {
754
+ * "hostVer": "-",
755
+ * "uniVer": "-",
756
+ * "unixVer": "-"
757
+ * },
758
+ * "toutiao": {
759
+ * "hostVer": "-",
760
+ * "uniVer": "-",
761
+ * "unixVer": "-"
762
+ * },
763
+ * "lark": {
764
+ * "hostVer": "-",
765
+ * "uniVer": "-",
766
+ * "unixVer": "-"
767
+ * },
768
+ * "qq": {
769
+ * "hostVer": "-",
770
+ * "uniVer": "-",
771
+ * "unixVer": "-"
772
+ * },
773
+ * "kuaishou": {
774
+ * "hostVer": "-",
775
+ * "uniVer": "-",
776
+ * "unixVer": "-"
777
+ * },
778
+ * "jd": {
779
+ * "hostVer": "-",
780
+ * "uniVer": "-",
781
+ * "unixVer": "-"
782
+ * }
783
+ * }
784
+ * }
785
+ */
786
+ appId?: string | null;
787
+ /**
788
+ * 来源小程序传过来的数据,scene=1037或1038时支持
789
+ *
790
+ * @uniPlatform {
791
+ * "mp": {
792
+ * "weixin": {
793
+ * "hostVer": "√",
794
+ * "uniVer": "√",
795
+ * "unixVer": "4.41"
796
+ * },
797
+ * "alipay": {
798
+ * "hostVer": "-",
799
+ * "uniVer": "-",
800
+ * "unixVer": "-"
801
+ * },
802
+ * "baidu": {
803
+ * "hostVer": "-",
804
+ * "uniVer": "-",
805
+ * "unixVer": "-"
806
+ * },
807
+ * "toutiao": {
808
+ * "hostVer": "-",
809
+ * "uniVer": "-",
810
+ * "unixVer": "-"
811
+ * },
812
+ * "lark": {
813
+ * "hostVer": "-",
814
+ * "uniVer": "-",
815
+ * "unixVer": "-"
816
+ * },
817
+ * "qq": {
818
+ * "hostVer": "-",
819
+ * "uniVer": "-",
820
+ * "unixVer": "-"
821
+ * },
822
+ * "kuaishou": {
823
+ * "hostVer": "-",
824
+ * "uniVer": "-",
825
+ * "unixVer": "-"
826
+ * },
827
+ * "jd": {
828
+ * "hostVer": "-",
829
+ * "uniVer": "-",
830
+ * "unixVer": "-"
831
+ * }
832
+ * }
833
+ * }
834
+ */
835
+ extraData?: any | null
836
+ };
@@ -0,0 +1,35 @@
1
+ // 本文件为自动构建生成
2
+ import {
3
+ GyroscopeInterval as GyroscopeIntervalOrigin,
4
+ GyroscopeErrorCode as GyroscopeErrorCodeOrigin,
5
+ IGyroscopeError as IGyroscopeErrorOrigin,
6
+ GyroscopeSuccess as GyroscopeSuccessOrigin,
7
+ GyroscopeFail as GyroscopeFailOrigin,
8
+ GyroscopeSuccessCallback as GyroscopeSuccessCallbackOrigin,
9
+ GyroscopeFailCallback as GyroscopeFailCallbackOrigin,
10
+ GyroscopeComplete as GyroscopeCompleteOrigin,
11
+ GyroscopeCompleteCallback as GyroscopeCompleteCallbackOrigin,
12
+ StartGyroscopeOptions as StartGyroscopeOptionsOrigin,
13
+ StopGyroscopeOptions as StopGyroscopeOptionsOrigin,
14
+ OnGyroscopeChangeCallbackResult as OnGyroscopeChangeCallbackResultOrigin,
15
+ OnGyroscopeChangeCallback as OnGyroscopeChangeCallbackOrigin,
16
+ Uni as UniOrigin
17
+ } from './interface'
18
+
19
+ declare global {
20
+ type GyroscopeInterval = GyroscopeIntervalOrigin
21
+ type GyroscopeErrorCode = GyroscopeErrorCodeOrigin
22
+ type IGyroscopeError = IGyroscopeErrorOrigin
23
+ type GyroscopeSuccess = GyroscopeSuccessOrigin
24
+ type GyroscopeFail = GyroscopeFailOrigin
25
+ type GyroscopeSuccessCallback = GyroscopeSuccessCallbackOrigin
26
+ type GyroscopeFailCallback = GyroscopeFailCallbackOrigin
27
+ type GyroscopeComplete = GyroscopeCompleteOrigin
28
+ type GyroscopeCompleteCallback = GyroscopeCompleteCallbackOrigin
29
+ type StartGyroscopeOptions = StartGyroscopeOptionsOrigin
30
+ type StopGyroscopeOptions = StopGyroscopeOptionsOrigin
31
+ type OnGyroscopeChangeCallbackResult = OnGyroscopeChangeCallbackResultOrigin
32
+ type OnGyroscopeChangeCallback = OnGyroscopeChangeCallbackOrigin
33
+ interface Uni extends UniOrigin { }
34
+ }
35
+
@@ -0,0 +1,17 @@
1
+ // 本文件为自动构建生成
2
+ export {
3
+ GyroscopeInterval,
4
+ GyroscopeErrorCode,
5
+ IGyroscopeError,
6
+ GyroscopeSuccess,
7
+ GyroscopeFail,
8
+ GyroscopeSuccessCallback,
9
+ GyroscopeFailCallback,
10
+ GyroscopeComplete,
11
+ GyroscopeCompleteCallback,
12
+ StartGyroscopeOptions,
13
+ StopGyroscopeOptions,
14
+ OnGyroscopeChangeCallbackResult,
15
+ OnGyroscopeChangeCallback,
16
+ } from './interface'
17
+