@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
package/README.md CHANGED
@@ -1 +1,88 @@
1
1
  # uni-app x 类型
2
+
3
+ ## 配置环境
4
+
5
+ 当前目录建立 `.env` 文件。
6
+
7
+ ```env
8
+ UNI_CORE_DIR="%vuejs-core 仓库路径%/packages/uni-ext-api/src"
9
+ UNI_UTS_PLUGIN_API_DIR="%新 uni-app 仓库路径%/api"
10
+ UNI_UTS_PLUGIN_MODULES_DIR="%dcloud-uts 仓库路径%/uni_modules"
11
+ UNI_COMPLIER_META_DIR="%旧 uni-app 仓库路径%/packages/uni-uts-v1/lib/ext-api"
12
+ # 可选。不配置时默认使用项目根目录下的 .uni-module-projects-cache
13
+ UNI_MODULE_PROJECTS_CACHE_DIR="%插件项目缓存目录%"
14
+ ```
15
+
16
+ ## 聚合单独插件项目
17
+
18
+ 单独插件项目通过 `scripts/uni-module-projects.json` 配置,构建时会自动聚合并同步到当前仓库对应分支。
19
+
20
+ ```json
21
+ [
22
+ {
23
+ "name": "uni-im",
24
+ "repo": "git@your-git-host:team/uni-im.git"
25
+ },
26
+ {
27
+ "name": "uni-pay",
28
+ "repo": "git@your-git-host:team/uni-pay.git",
29
+ "branches": {
30
+ "main": "main",
31
+ "dev": "dev",
32
+ "alpha": "alpha"
33
+ }
34
+ }
35
+ ]
36
+ ```
37
+
38
+ 说明:
39
+
40
+ - `name` 用作本地缓存目录名,必须唯一。
41
+ - `repo` 是插件项目仓库地址。
42
+ - `branches` 可选,用于少数分支名不一致的项目;未配置时默认使用当前仓库分支名。
43
+ - 当前仓库如果在 `master` 分支,构建脚本会自动映射到插件项目的 `main` 分支。
44
+ - 如果未配置 `UNI_MODULE_PROJECTS_CACHE_DIR`,脚本会使用项目根目录下的 `.uni-module-projects-cache` 作为默认缓存目录;该目录已加入 `.gitignore`。
45
+
46
+ 构建时脚本会对 `uni-module-projects.json` 中的每个项目执行以下流程:
47
+
48
+ - 首次构建时自动 `git clone`
49
+ - 后续构建时自动 `git fetch --all --prune`
50
+ - 切换到当前仓库对应分支
51
+ - 执行 `git pull --ff-only`
52
+ - 从各项目的 `uni_modules/` 中收集插件并参与 dts 构建
53
+
54
+ 如果某个缓存仓库存在未提交改动,构建会直接失败,避免覆盖本地工作区。
55
+
56
+ 如果多个来源中存在相同的 `uni_modules/<plugin>/utssdk/interface.*` 相对路径,构建会直接报错,避免生成结果互相覆盖。
57
+
58
+ ## 构建
59
+
60
+ 构建框架内置 Uni Api:
61
+
62
+ ```sh
63
+ pnpm build:types:core
64
+ ```
65
+
66
+ 构建插件 API:
67
+
68
+ ```sh
69
+ pnpm build:types:plugin:api
70
+ ```
71
+
72
+ 构建插件组件类型与 vuedoc:
73
+
74
+ ```sh
75
+ pnpm build:types:plugin:component
76
+ ```
77
+
78
+ 构建业务插件类型:
79
+
80
+ ```sh
81
+ pnpm build:types:plugin:biz
82
+ ```
83
+
84
+ 生成默认参数数据到编译器:
85
+
86
+ ```sh
87
+ pnpm build:types:meta
88
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/uni-app-x",
3
- "version": "0.7.120",
3
+ "version": "0.7.122",
4
4
  "description": "uni-app x types",
5
5
  "typings": "index.d.ts",
6
6
  "main": "index.d.ts",
package/types/app.d.ts CHANGED
@@ -1134,7 +1134,8 @@ declare global {
1134
1134
  * "harmony": {
1135
1135
  * "osVer": "3.0",
1136
1136
  * "uniVer": "4.23",
1137
- * "unixVer": "4.61"
1137
+ * "unixVer": "4.61",
1138
+ * "unixVaporVer": "5.0"
1138
1139
  * }
1139
1140
  * },
1140
1141
  * "mp": {
@@ -12,9 +12,14 @@ export enum UniSlotType {
12
12
  None,
13
13
  /**
14
14
  * 下拉刷新插槽
15
- * scroll-view组件的子组件使用
15
+ * scroll-view、list-view、waterflow组件内支持
16
16
  */
17
- Refresher
17
+ Refresher,
18
+ /**
19
+ * 上拉加载更多插槽
20
+ * scroll-view、list-view、waterflow组件内支持
21
+ */
22
+ LoadMore
18
23
  }
19
24
 
20
25
 
@@ -420,9 +420,14 @@ export enum UniNativeSlotType {
420
420
  None,
421
421
  /**
422
422
  * 下拉刷新插槽
423
- * scroll-view组件的子组件使用
423
+ * scroll-view、list-view、waterflow组件内支持
424
424
  */
425
- Refresher
425
+ Refresher,
426
+ /**
427
+ * 上拉加载更多插槽
428
+ * scroll-view、list-view、waterflow组件内支持
429
+ */
430
+ LoadMore
426
431
  }
427
432
  //export type UniNativeSlotType = UniSlotType
428
433
 
@@ -108,6 +108,12 @@ declare global {
108
108
  * @internal
109
109
  */
110
110
  createElement(type: UniElementType): UniElement
111
+ /**
112
+ * Android平台Kotlin层实现
113
+ * 用于Android平台线程2中uts组件(native-view)中自定义的Element,仅限原生层自定义Element使用
114
+ * @internal
115
+ */
116
+ createCustomNativeElement(name: string, flatten: boolean): UniElement
111
117
  /**
112
118
  * Android平台Kotlin层实现
113
119
  * 用于Android平台线程1中创建UniTextLayout
@@ -10,12 +10,14 @@ declare global {
10
10
  * "android": {
11
11
  * "osVer": "5.0",
12
12
  * "uniVer": "x",
13
- * "unixVer": "3.9"
13
+ * "unixVer": "3.9",
14
+ * "unixVaporVer": "x"
14
15
  * },
15
16
  * "ios": {
16
17
  * "osVer": "12.0",
17
18
  * "uniVer": "x",
18
- * "unixVer": "4.11"
19
+ * "unixVer": "4.11",
20
+ * "unixVaporVer": "x"
19
21
  * },
20
22
  * "harmony": {
21
23
  * "osVer": "x",
@@ -81,12 +83,14 @@ declare global {
81
83
  * "android": {
82
84
  * "osVer": "5.0",
83
85
  * "uniVer": "x",
84
- * "unixVer": "3.9"
86
+ * "unixVer": "3.9",
87
+ * "unixVaporVer": "x"
85
88
  * },
86
89
  * "ios": {
87
90
  * "osVer": "12.0",
88
91
  * "uniVer": "x",
89
- * "unixVer": "4.11"
92
+ * "unixVer": "4.11",
93
+ * "unixVaporVer": "x"
90
94
  * },
91
95
  * "harmony": {
92
96
  * "osVer": "x",
@@ -152,12 +156,14 @@ declare global {
152
156
  * "android": {
153
157
  * "osVer": "5.0",
154
158
  * "uniVer": "x",
155
- * "unixVer": "3.9"
159
+ * "unixVer": "3.9",
160
+ * "unixVaporVer": "x"
156
161
  * },
157
162
  * "ios": {
158
163
  * "osVer": "12.0",
159
164
  * "uniVer": "x",
160
- * "unixVer": "4.11"
165
+ * "unixVer": "4.11",
166
+ * "unixVaporVer": "x"
161
167
  * },
162
168
  * "harmony": {
163
169
  * "osVer": "x",
@@ -223,12 +229,14 @@ declare global {
223
229
  * "android": {
224
230
  * "osVer": "5.0",
225
231
  * "uniVer": "x",
226
- * "unixVer": "3.9"
232
+ * "unixVer": "3.9",
233
+ * "unixVaporVer": "x"
227
234
  * },
228
235
  * "ios": {
229
236
  * "osVer": "12.0",
230
237
  * "uniVer": "x",
231
- * "unixVer": "4.11"
238
+ * "unixVer": "4.11",
239
+ * "unixVaporVer": "x"
232
240
  * },
233
241
  * "harmony": {
234
242
  * "osVer": "x",
@@ -293,12 +301,14 @@ declare global {
293
301
  * "android": {
294
302
  * "osVer": "5.0",
295
303
  * "uniVer": "x",
296
- * "unixVer": "3.9"
304
+ * "unixVer": "3.9",
305
+ * "unixVaporVer": "x"
297
306
  * },
298
307
  * "ios": {
299
308
  * "osVer": "12.0",
300
309
  * "uniVer": "x",
301
- * "unixVer": "4.11"
310
+ * "unixVer": "4.11",
311
+ * "unixVaporVer": "x"
302
312
  * },
303
313
  * "harmony": {
304
314
  * "osVer": "x",
@@ -364,12 +374,14 @@ declare global {
364
374
  * "android": {
365
375
  * "osVer": "5.0",
366
376
  * "uniVer": "x",
367
- * "unixVer": "3.9"
377
+ * "unixVer": "3.9",
378
+ * "unixVaporVer": "x"
368
379
  * },
369
380
  * "ios": {
370
381
  * "osVer": "12.0",
371
382
  * "uniVer": "x",
372
- * "unixVer": "4.11"
383
+ * "unixVer": "4.11",
384
+ * "unixVaporVer": "x"
373
385
  * },
374
386
  * "harmony": {
375
387
  * "osVer": "x",
@@ -435,12 +447,14 @@ declare global {
435
447
  * "android": {
436
448
  * "osVer": "5.0",
437
449
  * "uniVer": "x",
438
- * "unixVer": "3.9"
450
+ * "unixVer": "3.9",
451
+ * "unixVaporVer": "x"
439
452
  * },
440
453
  * "ios": {
441
454
  * "osVer": "12.0",
442
455
  * "uniVer": "x",
443
- * "unixVer": "4.11"
456
+ * "unixVer": "4.11",
457
+ * "unixVaporVer": "x"
444
458
  * },
445
459
  * "harmony": {
446
460
  * "osVer": "x",
@@ -506,12 +520,14 @@ declare global {
506
520
  * "android": {
507
521
  * "osVer": "5.0",
508
522
  * "uniVer": "x",
509
- * "unixVer": "3.9"
523
+ * "unixVer": "3.9",
524
+ * "unixVaporVer": "x"
510
525
  * },
511
526
  * "ios": {
512
527
  * "osVer": "12.0",
513
528
  * "uniVer": "x",
514
- * "unixVer": "4.11"
529
+ * "unixVer": "4.11",
530
+ * "unixVaporVer": "x"
515
531
  * },
516
532
  * "harmony": {
517
533
  * "osVer": "x",
@@ -577,12 +593,14 @@ declare global {
577
593
  * "android": {
578
594
  * "osVer": "5.0",
579
595
  * "uniVer": "x",
580
- * "unixVer": "3.9"
596
+ * "unixVer": "3.9",
597
+ * "unixVaporVer": "x"
581
598
  * },
582
599
  * "ios": {
583
600
  * "osVer": "12.0",
584
601
  * "uniVer": "x",
585
- * "unixVer": "4.11"
602
+ * "unixVer": "4.11",
603
+ * "unixVaporVer": "x"
586
604
  * },
587
605
  * "harmony": {
588
606
  * "osVer": "x",
@@ -648,12 +666,14 @@ declare global {
648
666
  * "android": {
649
667
  * "osVer": "5.0",
650
668
  * "uniVer": "x",
651
- * "unixVer": "3.9"
669
+ * "unixVer": "3.9",
670
+ * "unixVaporVer": "x"
652
671
  * },
653
672
  * "ios": {
654
673
  * "osVer": "12.0",
655
674
  * "uniVer": "x",
656
- * "unixVer": "4.11"
675
+ * "unixVer": "4.11",
676
+ * "unixVaporVer": "x"
657
677
  * },
658
678
  * "harmony": {
659
679
  * "osVer": "x",
@@ -725,12 +745,14 @@ declare global {
725
745
  * "android": {
726
746
  * "osVer": "5.0",
727
747
  * "uniVer": "x",
728
- * "unixVer": "3.9"
748
+ * "unixVer": "3.9",
749
+ * "unixVaporVer": "x"
729
750
  * },
730
751
  * "ios": {
731
752
  * "osVer": "12.0",
732
753
  * "uniVer": "x",
733
- * "unixVer": "4.11"
754
+ * "unixVer": "4.11",
755
+ * "unixVaporVer": "x"
734
756
  * },
735
757
  * "harmony": {
736
758
  * "osVer": "x",
@@ -798,12 +820,14 @@ declare global {
798
820
  * "android": {
799
821
  * "osVer": "5.0",
800
822
  * "uniVer": "x",
801
- * "unixVer": "3.9"
823
+ * "unixVer": "3.9",
824
+ * "unixVaporVer": "x"
802
825
  * },
803
826
  * "ios": {
804
827
  * "osVer": "12.0",
805
828
  * "uniVer": "x",
806
- * "unixVer": "4.11"
829
+ * "unixVer": "4.11",
830
+ * "unixVaporVer": "x"
807
831
  * },
808
832
  * "harmony": {
809
833
  * "osVer": "x",
@@ -873,12 +897,14 @@ declare global {
873
897
  * "android": {
874
898
  * "osVer": "5.0",
875
899
  * "uniVer": "x",
876
- * "unixVer": "3.9"
900
+ * "unixVer": "3.9",
901
+ * "unixVaporVer": "x"
877
902
  * },
878
903
  * "ios": {
879
904
  * "osVer": "12.0",
880
905
  * "uniVer": "x",
881
- * "unixVer": "4.11"
906
+ * "unixVer": "4.11",
907
+ * "unixVaporVer": "x"
882
908
  * },
883
909
  * "harmony": {
884
910
  * "osVer": "x",
@@ -946,12 +972,14 @@ declare global {
946
972
  * "android": {
947
973
  * "osVer": "5.0",
948
974
  * "uniVer": "x",
949
- * "unixVer": "3.9"
975
+ * "unixVer": "3.9",
976
+ * "unixVaporVer": "x"
950
977
  * },
951
978
  * "ios": {
952
979
  * "osVer": "12.0",
953
980
  * "uniVer": "x",
954
- * "unixVer": "4.11"
981
+ * "unixVer": "4.11",
982
+ * "unixVaporVer": "x"
955
983
  * },
956
984
  * "harmony": {
957
985
  * "osVer": "x",
@@ -1017,12 +1045,14 @@ declare global {
1017
1045
  * "android": {
1018
1046
  * "osVer": "5.0",
1019
1047
  * "uniVer": "x",
1020
- * "unixVer": "3.9"
1048
+ * "unixVer": "3.9",
1049
+ * "unixVaporVer": "x"
1021
1050
  * },
1022
1051
  * "ios": {
1023
1052
  * "osVer": "12.0",
1024
1053
  * "uniVer": "x",
1025
- * "unixVer": "4.11"
1054
+ * "unixVer": "4.11",
1055
+ * "unixVaporVer": "x"
1026
1056
  * },
1027
1057
  * "harmony": {
1028
1058
  * "osVer": "x",
@@ -1088,12 +1118,14 @@ declare global {
1088
1118
  * "android": {
1089
1119
  * "osVer": "5.0",
1090
1120
  * "uniVer": "x",
1091
- * "unixVer": "3.9"
1121
+ * "unixVer": "3.9",
1122
+ * "unixVaporVer": "x"
1092
1123
  * },
1093
1124
  * "ios": {
1094
1125
  * "osVer": "12.0",
1095
1126
  * "uniVer": "x",
1096
- * "unixVer": "4.11"
1127
+ * "unixVer": "4.11",
1128
+ * "unixVaporVer": "x"
1097
1129
  * },
1098
1130
  * "harmony": {
1099
1131
  * "osVer": "x",
@@ -1163,12 +1195,14 @@ declare global {
1163
1195
  * "android": {
1164
1196
  * "osVer": "5.0",
1165
1197
  * "uniVer": "x",
1166
- * "unixVer": "3.9"
1198
+ * "unixVer": "3.9",
1199
+ * "unixVaporVer": "x"
1167
1200
  * },
1168
1201
  * "ios": {
1169
1202
  * "osVer": "12.0",
1170
1203
  * "uniVer": "x",
1171
- * "unixVer": "4.11"
1204
+ * "unixVer": "4.11",
1205
+ * "unixVaporVer": "x"
1172
1206
  * },
1173
1207
  * "harmony": {
1174
1208
  * "osVer": "x",
@@ -1237,12 +1271,14 @@ declare global {
1237
1271
  * "android": {
1238
1272
  * "osVer": "5.0",
1239
1273
  * "uniVer": "x",
1240
- * "unixVer": "3.9"
1274
+ * "unixVer": "3.9",
1275
+ * "unixVaporVer": "x"
1241
1276
  * },
1242
1277
  * "ios": {
1243
1278
  * "osVer": "12.0",
1244
1279
  * "uniVer": "x",
1245
- * "unixVer": "4.11"
1280
+ * "unixVer": "4.11",
1281
+ * "unixVaporVer": "x"
1246
1282
  * },
1247
1283
  * "harmony": {
1248
1284
  * "osVer": "x",
@@ -1309,12 +1345,14 @@ declare global {
1309
1345
  * "android": {
1310
1346
  * "osVer": "5.0",
1311
1347
  * "uniVer": "x",
1312
- * "unixVer": "3.9"
1348
+ * "unixVer": "3.9",
1349
+ * "unixVaporVer": "x"
1313
1350
  * },
1314
1351
  * "ios": {
1315
1352
  * "osVer": "12.0",
1316
1353
  * "uniVer": "x",
1317
- * "unixVer": "4.11"
1354
+ * "unixVer": "4.11",
1355
+ * "unixVaporVer": "x"
1318
1356
  * },
1319
1357
  * "harmony": {
1320
1358
  * "osVer": "x",
@@ -1384,12 +1422,14 @@ declare global {
1384
1422
  * "android": {
1385
1423
  * "osVer": "5.0",
1386
1424
  * "uniVer": "x",
1387
- * "unixVer": "3.9"
1425
+ * "unixVer": "3.9",
1426
+ * "unixVaporVer": "x"
1388
1427
  * },
1389
1428
  * "ios": {
1390
1429
  * "osVer": "12.0",
1391
1430
  * "uniVer": "x",
1392
- * "unixVer": "4.11"
1431
+ * "unixVer": "4.11",
1432
+ * "unixVaporVer": "x"
1393
1433
  * },
1394
1434
  * "harmony": {
1395
1435
  * "osVer": "x",
@@ -1458,12 +1498,14 @@ declare global {
1458
1498
  * "android": {
1459
1499
  * "osVer": "5.0",
1460
1500
  * "uniVer": "x",
1461
- * "unixVer": "3.9"
1501
+ * "unixVer": "3.9",
1502
+ * "unixVaporVer": "x"
1462
1503
  * },
1463
1504
  * "ios": {
1464
1505
  * "osVer": "12.0",
1465
1506
  * "uniVer": "x",
1466
- * "unixVer": "4.11"
1507
+ * "unixVer": "4.11",
1508
+ * "unixVaporVer": "x"
1467
1509
  * },
1468
1510
  * "harmony": {
1469
1511
  * "osVer": "x",
@@ -1529,12 +1571,14 @@ declare global {
1529
1571
  * "android": {
1530
1572
  * "osVer": "5.0",
1531
1573
  * "uniVer": "x",
1532
- * "unixVer": "3.9"
1574
+ * "unixVer": "3.9",
1575
+ * "unixVaporVer": "x"
1533
1576
  * },
1534
1577
  * "ios": {
1535
1578
  * "osVer": "12.0",
1536
1579
  * "uniVer": "x",
1537
- * "unixVer": "4.11"
1580
+ * "unixVer": "4.11",
1581
+ * "unixVaporVer": "x"
1538
1582
  * },
1539
1583
  * "harmony": {
1540
1584
  * "osVer": "x",
@@ -1600,12 +1644,14 @@ declare global {
1600
1644
  * "android": {
1601
1645
  * "osVer": "5.0",
1602
1646
  * "uniVer": "x",
1603
- * "unixVer": "3.9"
1647
+ * "unixVer": "3.9",
1648
+ * "unixVaporVer": "x"
1604
1649
  * },
1605
1650
  * "ios": {
1606
1651
  * "osVer": "12.0",
1607
1652
  * "uniVer": "x",
1608
- * "unixVer": "4.11"
1653
+ * "unixVer": "4.11",
1654
+ * "unixVaporVer": "x"
1609
1655
  * },
1610
1656
  * "harmony": {
1611
1657
  * "osVer": "x",
@@ -1672,12 +1718,14 @@ declare global {
1672
1718
  * "android": {
1673
1719
  * "osVer": "5.0",
1674
1720
  * "uniVer": "x",
1675
- * "unixVer": "3.9"
1721
+ * "unixVer": "3.9",
1722
+ * "unixVaporVer": "x"
1676
1723
  * },
1677
1724
  * "ios": {
1678
1725
  * "osVer": "12.0",
1679
1726
  * "uniVer": "x",
1680
- * "unixVer": "4.11"
1727
+ * "unixVer": "4.11",
1728
+ * "unixVaporVer": "x"
1681
1729
  * },
1682
1730
  * "harmony": {
1683
1731
  * "osVer": "x",
@@ -1748,12 +1796,14 @@ declare global {
1748
1796
  * "android": {
1749
1797
  * "osVer": "5.0",
1750
1798
  * "uniVer": "x",
1751
- * "unixVer": "3.9"
1799
+ * "unixVer": "3.9",
1800
+ * "unixVaporVer": "x"
1752
1801
  * },
1753
1802
  * "ios": {
1754
1803
  * "osVer": "12.0",
1755
1804
  * "uniVer": "x",
1756
- * "unixVer": "4.11"
1805
+ * "unixVer": "4.11",
1806
+ * "unixVaporVer": "x"
1757
1807
  * },
1758
1808
  * "harmony": {
1759
1809
  * "osVer": "x",
@@ -1825,12 +1875,14 @@ declare global {
1825
1875
  * "android": {
1826
1876
  * "osVer": "5.0",
1827
1877
  * "uniVer": "x",
1828
- * "unixVer": "3.9"
1878
+ * "unixVer": "3.9",
1879
+ * "unixVaporVer": "x"
1829
1880
  * },
1830
1881
  * "ios": {
1831
1882
  * "osVer": "12.0",
1832
1883
  * "uniVer": "x",
1833
- * "unixVer": "4.11"
1884
+ * "unixVer": "4.11",
1885
+ * "unixVaporVer": "x"
1834
1886
  * },
1835
1887
  * "harmony": {
1836
1888
  * "osVer": "x",
@@ -1590,13 +1590,15 @@ declare global {
1590
1590
  * "android": {
1591
1591
  * "osVer": "5.0",
1592
1592
  * "uniVer": "x",
1593
- * "unixVer": "3.9+"
1593
+ * "unixVer": "3.9+",
1594
+ * "unixVaporVer": "x"
1594
1595
  * },
1595
1596
  * "ios": {
1596
1597
  * "osVer": "12.0",
1597
1598
  * "uniVer": "x",
1598
1599
  * "unixVer": "4.11",
1599
- * "unixUtsPlugin": "4.25"
1600
+ * "unixUtsPlugin": "4.25",
1601
+ * "unixVaporVer": "x"
1600
1602
  * },
1601
1603
  * "harmony": {
1602
1604
  * "osVer": "5.0",
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "types",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "node_modules/typescript": {
8
+ "version": "5.5.2",
9
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.2.tgz",
10
+ "integrity": "sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==",
11
+ "bin": {
12
+ "tsc": "bin/tsc",
13
+ "tsserver": "bin/tsserver"
14
+ },
15
+ "engines": {
16
+ "node": ">=14.17"
17
+ }
18
+ }
19
+ }
20
+ }