openSlidePanel.d.ts 555 B

123456789101112131415161718192021
  1. /**
  2. * 打开侧边框 请求参数定义
  3. * @apiName biz.util.openSlidePanel
  4. */
  5. export interface IBizUtilOpenSlidePanelParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 打开侧边框 返回结果定义
  10. * @apiName biz.util.openSlidePanel
  11. */
  12. export interface IBizUtilOpenSlidePanelResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 打开侧边框
  17. * @apiName biz.util.openSlidePanel
  18. * @supportVersion pc: 2.5.0
  19. */
  20. export declare function openSlidePanel$(params: IBizUtilOpenSlidePanelParams): Promise<IBizUtilOpenSlidePanelResult>;
  21. export default openSlidePanel$;