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.
15 lines
292 B
15 lines
292 B
|
3 years ago
|
/**
|
||
|
|
* @file 设置页面是否支持下拉
|
||
|
|
*/
|
||
|
|
|
||
|
|
declare namespace my {
|
||
|
|
interface ICanPullDownOptions {
|
||
|
|
canPullDown: boolean;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 设置页面是否支持下拉(小程序内页面默认支持下拉)
|
||
|
|
*/
|
||
|
|
function setCanPullDown(options: ICanPullDownOptions): void;
|
||
|
|
}
|