UNPKG

@ethersphere/bee-js

Version:
10 lines (9 loc) 426 B
import { AxiosRequestConfig, AxiosResponse } from 'axios'; import { BeeRequestOptions } from '../index'; export declare const DEFAULT_HTTP_CONFIG: AxiosRequestConfig; /** * Main function to make HTTP requests. * @param options User defined settings * @param config Internal settings and/or Bee settings */ export declare function http<T>(options: BeeRequestOptions, config: AxiosRequestConfig): Promise<AxiosResponse<T>>;