t-comm
Version:
专业、稳定、纯粹的工具库
13 lines (12 loc) • 366 B
TypeScript
import type COS from 'cos-nodejs-sdk-v5';
/**
* 获取 cos-nodejs-sdk-v5 库
* cos-nodejs-sdk-v5 是腾讯云对象存储 COS 的 Node.js SDK
* @returns cos-nodejs-sdk-v5 库
* @example
* ```ts
* const COS = getCosNodejsSdkV5();
* const cos = new COS({ SecretId: '...', SecretKey: '...' });
* ```
*/
export declare function getCosNodejsSdkV5(): typeof COS;