t-comm
Version:
专业、稳定、纯粹的工具库
22 lines (21 loc) • 915 B
TypeScript
import type { ISecretInfo } from './types';
export declare function createTencentDoc({ accessToken, clientId, openId, type, title, folderId, }: ISecretInfo & {
type: number;
title: string;
folderId?: string;
}): Promise<any>;
export declare function convertTencentFileId({ accessToken, clientId, openId, type, value, }: ISecretInfo & {
type: number;
value: string;
}): Promise<any>;
export declare function uploadTencentDocImage({ accessToken, clientId, openId, image, }: ISecretInfo & {
image: string;
}): Promise<any>;
export declare function asyncExportTencentDoc({ accessToken, clientId, openId, fileId, exportType, }: ISecretInfo & {
fileId: string;
exportType: number;
}): Promise<any>;
export declare function checkExportTencentDocProgress({ accessToken, clientId, openId, fileId, operationId, }: ISecretInfo & {
fileId: string;
operationId: string;
}): Promise<any>;