智能照明系统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/7b/7bf6a2c2b9e18e27c4c03ffb42b...

14 lines
292 B

/**
* @file 设置页面是否支持下拉
*/
declare namespace my {
interface ICanPullDownOptions {
canPullDown: boolean;
}
/**
* 设置页面是否支持下拉(小程序内页面默认支持下拉)
*/
function setCanPullDown(options: ICanPullDownOptions): void;
}