export interface IAxiosConfig { baseURL: string; timeout: number; } export class TAxiosConfig implements IAxiosConfig { baseURL: string = ""; timeout: number = 60000; }