doum
9 天以前 60e49d600834344ae1b18357e76df74fbe160527
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export declare const apiName = "biz.navigation.setPullGesture";
/**
 * 设置当前页面(容器实例)是否支持设置收纳到缩略图功能 请求参数定义
 * @apiName biz.navigation.setPullGesture
 */
export interface IBizNavigationSetPullGestureParams {
    [key: string]: any;
}
/**
 * 设置当前页面(容器实例)是否支持设置收纳到缩略图功能 返回结果定义
 * @apiName biz.navigation.setPullGesture
 */
export interface IBizNavigationSetPullGestureResult {
    [key: string]: any;
}
/**
 * 设置当前页面(容器实例)是否支持设置收纳到缩略图功能
 * @apiName biz.navigation.setPullGesture
 * @supportVersion  ios: 4.2 android: 4.2
 */
export declare function setPullGesture$(params: IBizNavigationSetPullGestureParams): Promise<IBizNavigationSetPullGestureResult>;
export default setPullGesture$;