MrShi
7 天以前 97158794d69fd2beee1bf27577aa7cadea8d847d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
export declare const apiName = "biz.util.openPrintWnd";
/**
 * 打开钉盘文件打印窗口 请求参数定义
 * @apiName biz.util.openPrintWnd
 */
export interface IBizUtilOpenPrintWndParams {
    /** 钉盘文件参数space_id */
    space: string;
    /** 钉盘文件参数file_id */
    file: string;
    /** 文件类型 */
    fileType?: number;
    /** 是否加密 */
    isEncrypt?: boolean;
    /** 媒体id */
    media: string;
    spm?: string;
}
/**
 * 打开钉盘文件打印窗口 返回结果定义
 * @apiName biz.util.openPrintWnd
 */
export interface IBizUtilOpenPrintWndResult {
}
/**
 * 打开钉盘文件打印窗口
 * @apiName biz.util.openPrintWnd
 * @supportVersion win: 6.0.8 mac: 6.0.8
 * @author win:周镛 mac:伯温
 */
export declare function openPrintWnd$(params: IBizUtilOpenPrintWndParams): Promise<IBizUtilOpenPrintWndResult>;
export default openPrintWnd$;