UNPKG

@nutrient-sdk/dws-client-typescript

Version:

Node.js TypeScript client library for Nutrient Document Web Services (DWS) API

9 lines 576 B
import { type ResponseType } from 'axios'; import type { NutrientClientOptions } from './types'; import type { Methods, Endpoints, RequestConfig, ApiResponse } from './types'; /** * Sends HTTP request to Nutrient DWS Processor API * Handles authentication, file uploads, and error conversion */ export declare function sendRequest<Method extends Methods, Endpoint extends Endpoints<Method>>(config: RequestConfig<Method, Endpoint>, clientOptions: NutrientClientOptions, responseType: ResponseType): Promise<ApiResponse<Method, Endpoint>>; //# sourceMappingURL=http.d.ts.map