doum
9 天以前 60e49d600834344ae1b18357e76df74fbe160527
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.fileUpload";
/**
 * 上传文件到钉盘临时空间 请求参数定义
 * @apiName internal.cspace.fileUpload
 */
export interface IInternalCspaceFileUploadParams {
    /** 企业id */
    cropId: string;
    opeId: string;
    /** 文件路径 */
    filePath: string;
    /** 文件名称 */
    fileName: string;
}
/**
 * 上传文件到钉盘临时空间 返回结果定义
 * @apiName internal.cspace.fileUpload
 */
export interface IInternalCspaceFileUploadResult {
    opeId: string;
    opeStatus: number;
    spaceId: string;
    fileId: string;
}
/**
 * 上传文件到钉盘临时空间
 * @apiName internal.cspace.fileUpload
 * @supportVersion ios: 4.3.5 android: 4.3.5
 */
export declare function fileUpload$(params: IInternalCspaceFileUploadParams): Promise<IInternalCspaceFileUploadResult>;
export default fileUpload$;