Skip to content

Commit

Permalink
refactor: remove unused option
Browse files Browse the repository at this point in the history
Remove unused option

commit-id:d8e8797e
  • Loading branch information
ttshivers committed Dec 24, 2023
1 parent 8ad23f6 commit 4ecbadf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/interfaces/http-module.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ import type {
import type { AxiosRequestConfig } from 'axios';
import type { IAxiosRetryConfig } from 'axios-retry';

export type HttpModuleOptions = AxiosRequestConfig &
IAxiosRetryConfig & { isBetterStackTraceEnabled?: boolean };
export type HttpModuleOptions = AxiosRequestConfig & IAxiosRetryConfig;

export interface HttpModuleOptionsFactory {
createHttpOptions(): Promise<HttpModuleOptions> | HttpModuleOptions;
Expand Down

0 comments on commit 4ecbadf

Please sign in to comment.