@line/bot-sdk
Version: 
Node.js SDK for LINE Messaging API
27 lines • 1.29 kB
TypeScript
import { AxiosResponse, AxiosRequestConfig } from "axios";
import { Readable } from "node:stream";
interface httpClientConfig extends Partial<AxiosRequestConfig> {
    baseURL?: string;
    defaultHeaders?: any;
    responseParser?: <T>(res: AxiosResponse) => T;
}
export default class HTTPClient {
    private instance;
    private readonly 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, config?: Partial<AxiosRequestConfig>): Promise<T>;
    toBuffer(data: Buffer | Readable): Promise<Buffer<ArrayBufferLike>>;
    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 {};
//# sourceMappingURL=http-axios.d.ts.map