MrShi
8 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export declare const apiName = "internal.cspace.edit";
/**
 * 钉盘文件编辑功能 请求参数定义
 * @apiName internal.cspace.edit
 */
export interface IInternalCspaceEditParams {
    /** 钉盘空间Id 必选 */
    spaceId: string;
    /** 钉盘文件Id 必选 */
    fileId: string;
}
/**
 * 钉盘文件编辑功能 返回结果定义
 * @apiName internal.cspace.edit
 */
export interface IInternalCspaceEditResult {
}
/**
 * 钉盘文件编辑功能
 * @apiName internal.cspace.edit
 * @supportVersion ios: 4.6.1 android: 4.6.1
 */
export declare function edit$(params: IInternalCspaceEditParams): Promise<IInternalCspaceEditResult>;
export default edit$;