UNPKG

@line/bot-sdk

Version:
33 lines (32 loc) 1.32 kB
/// <reference types="node" /> /// <reference types="node" /> import { AxiosResponse, AxiosRequestConfig } from "axios"; import { Readable } from "stream"; export interface RequestFile { data: Blob; contentType: string; } interface httpClientConfig extends Partial<AxiosRequestConfig> { baseURL?: string; defaultHeaders?: any; responseParser?: <T>(res: AxiosResponse) => T; } export default class HTTPClient { private instance; private config; constructor(config?: httpClientConfig); get<T>(url: string, params?: any): Promise<T>; getStream(url: string, params?: any): Promise<Readable>; post<T>(url: string, body?: any, config?: Partial<AxiosRequestConfig>): Promise<T>; private responseParse; put<T>(url: string, body?: any, config?: Partial<AxiosRequestConfig>): Promise<T>; postForm<T>(url: string, body?: any): Promise<T>; postFormMultipart<T>(url: string, form: FormData): Promise<T>; putFormMultipart<T>(url: string, form: FormData): Promise<T>; toBuffer(data: Buffer | Readable): Promise<Buffer>; postBinary<T>(url: string, data: Buffer | Readable, contentType?: string): Promise<T>; postBinaryContent<T>(url: string, body: Blob): Promise<T>; delete<T>(url: string, params?: any): Promise<T>; private wrapError; } export {};