From 8fb95c80ff57d10616c0fd60ca1dfc991ce41675 Mon Sep 17 00:00:00 2001 From: Jim Anderson Date: Thu, 26 Sep 2024 21:03:34 -0500 Subject: [PATCH] don't expose wrapped response --- common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.ts b/common.ts index 9a626ab..be8b1aa 100644 --- a/common.ts +++ b/common.ts @@ -142,7 +142,7 @@ function randomTime(loopCount: number, minWaitInMs: number): number { return Math.floor(Math.random() * (max - min) + min); //The maximum is exclusive and the minimum is inclusive } -export interface WrappedAxiosResponse { +interface WrappedAxiosResponse { response?: AxiosResponse; retries: number; }