import { Method } from "axios"; export default interface IRequestConfig { url: string; method: Method; retryInterval?: number; retryAttempts?: number; logMetaIndexField?: string; [propName: string]: any; }