Installation
npm install --save @types/easy-soap-request
Summary
This package contains type definitions for easy-soap-request (https://github.com/circa10a/easy-soap-request).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/easy-soap-request.
import { AxiosError, AxiosProxyConfig, AxiosRequestConfig, AxiosResponse } from "axios";
interface Options {
method?: string | undefined;
url: string;
headers?: object | string | undefined;
xml: string;
timeout?: number | undefined;
proxy?: AxiosProxyConfig | undefined;
maxBodyLength?: number | undefined;
maxContentLength?: number | undefined;
extraOpts?: AxiosRequestConfig | undefined;
}
interface Response {
response: {
headers: any;
body: any;
statusCode: number;
};
}
declare function soapRequest(options: Options): Promise<Response>;
export = soapRequest;
Additional Details
- Last updated: Wed, 10 Jul 2024 18:08:42 GMT
- Dependencies: axios
Credits
These definitions were written by Steven Snoeijen.