Skip to content

Commit

Permalink
don't expose wrapped response
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames committed Sep 27, 2024
1 parent 1112a2c commit 8fb95c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<R> {
interface WrappedAxiosResponse<R> {
response?: AxiosResponse<R>;
retries: number;
}
Expand Down

0 comments on commit 8fb95c8

Please sign in to comment.