zhizhi/node_modules/dingtalk-jsapi/api/device/screen/insetAdjust.d.ts

23 lines
1.1 KiB
TypeScript
Raw Normal View History

/**
* iOS11系统数上H5端webview的contentInsetAdjustmentBehavioriPhone X等场景H5页面布局与安全区域
* @apiName device.screen.insetAdjust
*/
export interface IDeviceScreenInsetAdjustParams {
/** 0-自动(默认); 1-特殊case, JsApi场景同0; 2-不自动适配安全区域,全屏布局; 3-自动适配安全区域 */
contentInsetAdjustmentBehavior: number;
}
/**
* iOS11系统数上H5端webview的contentInsetAdjustmentBehavioriPhone X等场景H5页面布局与安全区域
* @apiName device.screen.insetAdjust
*/
export interface IDeviceScreenInsetAdjustResult {
[key: string]: any;
}
/**
* iOS11系统数上H5端webview的contentInsetAdjustmentBehavioriPhone X等场景H5页面布局与安全区域
* @apiName device.screen.insetAdjust
* @supportVersion ios: 4.6.18
*/
export declare function insetAdjust$(params: IDeviceScreenInsetAdjustParams): Promise<IDeviceScreenInsetAdjustResult>;
export default insetAdjust$;