Skip to content

Commit

Permalink
fix(type)对像存储请求里的Query参数类型 (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
270556660 authored Dec 18, 2024
1 parent ed53b6d commit bf87152
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,7 @@ declare namespace COS {
/** 上传的文件大小,单位 Byte 字节,如果不传且 Body 是流,会走服务端流式上传 */
ContentLength?: number;
/** 请求里的 Url Query 参数 */
Query?: string;
Query?: Query;
/** RFC 2616 中定义的缓存指令,将作为对象元数据保存 */
CacheControl?: string;
/** RFC 2616 中定义的文件名称,将作为对象元数据保存 */
Expand Down Expand Up @@ -1778,7 +1778,7 @@ Bulk:批量模式,恢复时间为24 - 48小时。 */
/** 分块上传时,并发数,默认值1 */
AsyncLimit?: number;
/** 请求里的 Url Query 参数 */
Query?: string;
Query?: Query;
/** RFC 2616 中定义的缓存指令,将作为对象元数据保存 */
CacheControl?: string;
/** RFC 2616 中定义的文件名称,将作为对象元数据保存 */
Expand Down

0 comments on commit bf87152

Please sign in to comment.