UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

15 lines (14 loc) 618 B
import type { ISecretInfo } from './types'; export declare function updateTencentSheet({ accessToken, clientId, openId, bookId, range, values, }: ISecretInfo & { bookId: string; range: string; values: Array<{}>; }): Promise<any>; export declare function updateTencentSheetImage({ accessToken, clientId, openId, bookId, insertImages, }: ISecretInfo & { bookId: string; insertImages: any; }): Promise<any>; export declare function batchUpdateTencentSheetV3({ accessToken, clientId, openId, bookId, requests, }: ISecretInfo & { bookId: string; requests: Record<string, any>; }): Promise<any>;