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; }