enable.d.ts 603 B

123456789101112131415161718192021
  1. /**
  2. * 启用webview下拉弹性效果 请求参数定义
  3. * @apiName ui.webViewBounce.enable
  4. */
  5. export interface IUiWebViewBounceEnableParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 启用webview下拉弹性效果 返回结果定义
  10. * @apiName ui.webViewBounce.enable
  11. */
  12. export interface IUiWebViewBounceEnableResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 启用webview下拉弹性效果
  17. * @apiName ui.webViewBounce.enable
  18. * @supportVersion ios: 2.4.0 android: 2.4.0
  19. */
  20. export declare function enable$(params: IUiWebViewBounceEnableParams): Promise<IUiWebViewBounceEnableResult>;
  21. export default enable$;