interface RequestOptions {
    body?: Record<string, any>;
    method?: HttpVerbs;
    qs?: Record<string, any>;
    url: string;
}

Properties

Properties

body?: Record<string, any>
method?: HttpVerbs
qs?: Record<string, any>
url: string