瀏覽代碼

declaration test

Alexander Rose 5 年之前
父節點
當前提交
18db901b9f
共有 2 個文件被更改,包括 3 次插入2 次删除
  1. 2 2
      src/servers/model/utils/fetch-retry.ts
  2. 1 0
      tsconfig.json

+ 2 - 2
src/servers/model/utils/fetch-retry.ts

@@ -4,7 +4,7 @@
  * @author David Sehnal <david.sehnal@gmail.com>
  */
 
-import fetch from 'node-fetch';
+import fetch, { Response } from 'node-fetch';
 import { retryIf } from '../../../mol-util/retry-if';
 
 const RETRIABLE_NETWORK_ERRORS = [
@@ -16,7 +16,7 @@ function isRetriableNetworkError(error: any) {
     return error && RETRIABLE_NETWORK_ERRORS.includes(error.code);
 }
 
-export async function fetchRetry(url: string, timeout: number, retryCount: number) {
+export async function fetchRetry(url: string, timeout: number, retryCount: number): Promise<Response> {
     const result = await retryIf(() => fetch(url, { timeout }), {
         retryThenIf: r => r.status >= 500 && r.status < 600,
         // TODO test retryCatchIf

+ 1 - 0
tsconfig.json

@@ -1,6 +1,7 @@
 {
     "compilerOptions": {
         "composite": true,
+        "declaration": true,
         "target": "es5",
         "alwaysStrict": true,
         "noImplicitAny": true,