export interface IParams { answer: any; url: string; method?: "GET" | "POST" | "PUT" | "DELETE"; comparation?: "EQUAL" | "TYPE" | "INTERFACE"; params?: { [key: string]: string }; body?: { [key: string]: any }; headers?: { [key: string]: string }; }