hideBar.d.ts 637 B

123456789101112131415161718192021
  1. /**
  2. * JS端控制容器导航栏的显示和隐藏 请求参数定义
  3. * @apiName biz.navigation.hideBar
  4. */
  5. export interface IBizNavigationHideBarParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * JS端控制容器导航栏的显示和隐藏 返回结果定义
  10. * @apiName biz.navigation.hideBar
  11. */
  12. export interface IBizNavigationHideBarResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * JS端控制容器导航栏的显示和隐藏
  17. * @apiName biz.navigation.hideBar
  18. * @supportVersion ios: 3.5.6 android: 3.5.6
  19. */
  20. export declare function hideBar$(params: IBizNavigationHideBarParams): Promise<IBizNavigationHideBarResult>;
  21. export default hideBar$;