New:Socket for Asana Is Now Available.Learn more
Get Started

mini-pc-types

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mini-pc-types - npm Package Compare versions

Comparing version
1.1.8
to
1.1.9
+1
-1
package.json
{
"name": "mini-pc-types",
"version": "1.1.8",
"version": "1.1.9",
"description": "taobao-mini-app",

@@ -5,0 +5,0 @@ "scripts": {

@@ -9,4 +9,26 @@ /**

*/
scrollTop: number;
scrollTop?: number;
/**
* 滚动动画的时长,单位ms,基础库最低版本1.20.0
*/
duration?: number;
/**
* 选择器,最低基础库版本1.20.0
*/
selector?: string;
/**
* 调用成功的回调函数
*/
success?: () => void;
/**
* 调用失败的回调函数
*/
fail?: () => void;
/**
* 调用结束的回调函数(调用成功、失败都会执行)
*/
complete?: () => void;
}
function pageScrollTo(options: IPageScrollToOptions): void;
}