UNPKG

@sophons/request

Version:

🚀 Probably the best Node.js HTTP request component, It also contains a rich stream processing

11 lines (10 loc) • 248 B
import { AxiosRequestConfig } from 'axios'; export interface RequestOptions extends AxiosRequestConfig { query?: any; } export interface FormDataOptions { url: string; formData: any; query?: any; configs?: AxiosRequestConfig; }