presentWindow.d.ts 553 B

123456789101112131415161718192021
  1. /**
  2. * 打开窗口 请求参数定义
  3. * @apiName biz.util.presentWindow
  4. */
  5. export interface IBizUtilPresentWindowParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 打开窗口 返回结果定义
  10. * @apiName biz.util.presentWindow
  11. */
  12. export interface IBizUtilPresentWindowResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 打开窗口
  17. * @apiName biz.util.presentWindow
  18. * @supportVersion ios: 2.8.0 android: 2.8.0
  19. */
  20. export declare function presentWindow$(params: IBizUtilPresentWindowParams): Promise<IBizUtilPresentWindowResult>;
  21. export default presentWindow$;