智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/98/98c07d310d9005a32556602c368...

24 lines
640 B

/**
* @file 下拉刷新
*/
declare namespace my {
interface IStartPullDownRefreshOptions {
success?: () => void;
fail?: () => void;
complete?: () => void;
}
interface IStopPullDownRefreshOptions {
success?: () => void;
fail?: () => void;
complete?: () => void;
}
/**
* 停止当前页面的下拉刷新。
*/
function stopPullDownRefresh(options?: IStartPullDownRefreshOptions): void;
/**
* 开始下拉刷新。代码执行后触发下拉刷新动画,效果与用户手动下拉刷新保持一致。
*/
function startPullDownRefresh(options?: IStopPullDownRefreshOptions): void;
}