From 389da87fce0a0b71e71fb23d267149534b865dae Mon Sep 17 00:00:00 2001 From: Michail Shipov Date: Wed, 24 Jul 2019 22:56:18 +0300 Subject: [PATCH] add retryCount to Response (#37109) --- types/got/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/got/index.d.ts b/types/got/index.d.ts index ba62e095ff..7774f8fce7 100644 --- a/types/got/index.d.ts +++ b/types/got/index.d.ts @@ -284,6 +284,7 @@ declare namespace got { requestUrl: string; fromCache: boolean; redirectUrls?: string[]; + retryCount: number; } type GotPromise = Promise> & { cancel(): void };