dingtalk-jsapi
Version:
钉钉 模块化 多端统一 API
23 lines (22 loc) • 613 B
TypeScript
export declare const apiName = "biz.util.openSlidePanel";
/**
* 打开侧边框 请求参数定义
* @apiName biz.util.openSlidePanel
*/
export interface IBizUtilOpenSlidePanelParams {
[key: string]: any;
}
/**
* 打开侧边框 返回结果定义
* @apiName biz.util.openSlidePanel
*/
export interface IBizUtilOpenSlidePanelResult {
[key: string]: any;
}
/**
* 打开侧边框
* @apiName biz.util.openSlidePanel
* @supportVersion pc: 2.5.0
*/
export declare function openSlidePanel$(params: IBizUtilOpenSlidePanelParams): Promise<IBizUtilOpenSlidePanelResult>;
export default openSlidePanel$;