浏览代码

return the commment of maximum number of redirects to its right place… (#6607)

Mokhtar Hamdoune 2 年之前
父节点
当前提交
81b9c505cc
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tooling/api/src/http.ts

+ 1 - 1
tooling/api/src/http.ts

@@ -57,11 +57,11 @@ interface Duration {
  * @since 1.0.0
  */
 interface ClientOptions {
-  maxRedirections?: number
   /**
    * Defines the maximum number of redirects the client should follow.
    * If set to 0, no redirects will be followed.
    */
+  maxRedirections?: number
   connectTimeout?: number | Duration
 }