resetView.d.ts 629 B

123456789101112131415161718192021
  1. /**
  2. * 重置旋转状态,并在恢复导航栏 请求参数定义
  3. * @apiName device.screen.resetView
  4. */
  5. export interface IDeviceScreenResetViewParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 重置旋转状态,并在恢复导航栏 返回结果定义
  10. * @apiName device.screen.resetView
  11. */
  12. export interface IDeviceScreenResetViewResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 重置旋转状态,并在恢复导航栏
  17. * @apiName device.screen.resetView
  18. * @supportVersion android: 4.0
  19. */
  20. export declare function resetView$(params: IDeviceScreenResetViewParams): Promise<IDeviceScreenResetViewResult>;
  21. export default resetView$;