@dcloudio/uni-app-x 0.7.18 → 0.7.20
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.
- package/package.json +1 -1
- package/types/app.d.ts +184 -24
- package/types/native/CanvasRenderingContext2D.d.ts +2 -1
- package/types/native/IUniElement.d.ts +113 -5
- package/types/uni/uts-plugin-api/global.d.ts +3 -3
- package/types/uni/uts-plugin-api/index.d.ts +3 -3
- package/types/uni/uts-plugin-api/lib/{uni-requestAnimationFrame → uni-animationFrame}/utssdk/interface.d.ts +48 -26
- package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/global.d.ts +60 -0
- package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/index.d.ts +29 -0
- package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/interface.d.ts +161 -0
- package/types/uni/uts-plugin-api/lib/uni-canvas/utssdk/interface.d.ts +70 -4
- package/types/uni/uts-plugin-api/lib/uni-createSelectorQuery/utssdk/interface.d.ts +37 -0
- package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/interface.d.ts +4 -3
- package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +108 -0
- package/types/uni/uts-plugin-api/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +112 -1
- package/types/uni/uts-plugin-api/lib/uni-getLocation/utssdk/interface.d.ts +1 -1
- package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/global.d.ts +6 -8
- package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/index.d.ts +3 -4
- package/types/uni/uts-plugin-api/lib/uni-getProvider/utssdk/interface.d.ts +49 -49
- package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/global.d.ts +4 -0
- package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/index.d.ts +2 -0
- package/types/uni/uts-plugin-api/lib/uni-prompt/utssdk/interface.d.ts +193 -8
- package/types/uni/uts-plugin-api/lib/uni-route/utssdk/interface.d.ts +2 -2
- package/types/uni/uts-plugin-biz/lib/uni-push/utssdk/interface.d.ts +808 -778
- package/types/uni-cloud/index.d.ts +5 -1
- package/types/uni-cloud/interface.d.ts +846 -850
- package/types/shim-uts-basic.d.ts +0 -4495
- package/types/uni/uts-plugin-api/lib/uni-cancelAnimationFrame/utssdk/global.d.ts +0 -10
- package/types/uni/uts-plugin-api/lib/uni-cancelAnimationFrame/utssdk/index.d.ts +0 -4
- package/types/uni/uts-plugin-api/lib/uni-cancelAnimationFrame/utssdk/interface.d.ts +0 -24
- /package/types/uni/uts-plugin-api/lib/{uni-requestAnimationFrame → uni-animationFrame}/utssdk/global.d.ts +0 -0
- /package/types/uni/uts-plugin-api/lib/{uni-requestAnimationFrame → uni-animationFrame}/utssdk/index.d.ts +0 -0
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export interface Uni {
|
|
2
|
-
/**
|
|
3
|
-
* 方法取消一个先前通过调用 window.requestAnimationFrame() 方法添加到计划中的动画帧请求
|
|
4
|
-
* @uniPlatform {
|
|
5
|
-
* "app": {
|
|
6
|
-
* "android": {
|
|
7
|
-
* "osVer": "5.0",
|
|
8
|
-
* "uniVer": "x",
|
|
9
|
-
* "unixVer": "4.25"
|
|
10
|
-
* },
|
|
11
|
-
* "ios": {
|
|
12
|
-
* "osVer": "12.0",
|
|
13
|
-
* "uniVer": "x",
|
|
14
|
-
* "unixVer": "4.25"
|
|
15
|
-
* }
|
|
16
|
-
* },
|
|
17
|
-
* "web": {
|
|
18
|
-
* "uniVer": "x",
|
|
19
|
-
* "unixVer": "4.25"
|
|
20
|
-
* }
|
|
21
|
-
* }
|
|
22
|
-
*/
|
|
23
|
-
cancelAnimationFrame(taskId: number): void;
|
|
24
|
-
}
|
|
File without changes
|
|
File without changes
|