MrShi
9 天以前 cb94ff4f0a46eb74c21dd7b34b8d958ef9a9f11c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export declare const apiName = "internal.alidoc.keyboardCompression";
/**
 * 当H5页面出现键盘时的视图大小和位置都收缩到键盘之上的可见区域(仅iOS) 请求参数定义
 * @apiName internal.alidoc.keyboardCompression
 */
export interface IInternalAlidocKeyboardCompressionParams {
    /** 是否开启功能 */
    enable: boolean;
}
/**
 * 当H5页面出现键盘时的视图大小和位置都收缩到键盘之上的可见区域(仅iOS) 返回结果定义
 * @apiName internal.alidoc.keyboardCompression
 */
export interface IInternalAlidocKeyboardCompressionResult {
    [key: string]: any;
}
/**
 * 当H5页面出现键盘时的视图大小和位置都收缩到键盘之上的可见区域(仅iOS)
 * @apiName internal.alidoc.keyboardCompression
 * @supportVersion ios: 4.5.12
 */
export declare function keyboardCompression$(params: IInternalAlidocKeyboardCompressionParams): Promise<IInternalAlidocKeyboardCompressionResult>;
export default keyboardCompression$;