doum
9 天以前 f4f2eb7c80ab85bf0e52c1b911d5a4a82cda330d
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
export declare const apiName = "internal.cspace.openCloudPrintWnd";
/**
 * 打开云打印窗口(效果与从钉盘点击云打印一样) 请求参数定义
 * @apiName internal.cspace.openCloudPrintWnd
 */
export interface IInternalCspaceOpenCloudPrintWndParams {
    /**  1: 钉盘文件 2:mediaid */
    fileType: number;
    /** fileType为1时有效 */
    spaceId?: string;
    /** fileType为1时有效 */
    fileId?: string;
    /** fileType为1时有效 */
    encrypt?: any;
    /** fileType为2时有效 */
    mediaId?: string;
}
/**
 * 打开云打印窗口(效果与从钉盘点击云打印一样) 返回结果定义
 * @apiName internal.cspace.openCloudPrintWnd
 */
export interface IInternalCspaceOpenCloudPrintWndResult {
    [key: string]: any;
}
/**
 * 打开云打印窗口(效果与从钉盘点击云打印一样)
 * @apiName internal.cspace.openCloudPrintWnd
 * @supportVersion ios: 4.3.7 android: 4.3.7
 */
export declare function openCloudPrintWnd$(params: IInternalCspaceOpenCloudPrintWndParams): Promise<IInternalCspaceOpenCloudPrintWndResult>;
export default openCloudPrintWnd$;