import { Method } from "./method.enum"; export interface IRequestProps { method: Method; url: string; data: any; query?: Object; contentType?: string; headers: Record | null; }