Skip to content

Commit 8fb95c8

Browse files
committed
don't expose wrapped response
1 parent 1112a2c commit 8fb95c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ function randomTime(loopCount: number, minWaitInMs: number): number {
142142
return Math.floor(Math.random() * (max - min) + min); //The maximum is exclusive and the minimum is inclusive
143143
}
144144

145-
export interface WrappedAxiosResponse<R> {
145+
interface WrappedAxiosResponse<R> {
146146
response?: AxiosResponse<R>;
147147
retries: number;
148148
}

0 commit comments

Comments
 (0)