vdi-axios
Version:
8 lines (7 loc) • 344 B
TypeScript
import axios, { type AxiosRequestConfig } from "axios";
import { CreateHttpInterceptor } from "./httpInterceptor";
export declare class HttpClient extends axios.Axios {
config: AxiosRequestConfig;
CreateHttpInterceptor: CreateHttpInterceptor;
constructor(config: AxiosRequestConfig, CreateHttpInterceptor: CreateHttpInterceptor);
}