UNPKG

@adobe/pdfservices-node-sdk

Version:

The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.

10 lines (9 loc) 380 B
import { ProxyServerConfig } from "../../config/proxy/ProxyServerConfig"; import { ClientConfig } from "../../config/ClientConfig"; export declare class HttpRequestConfig { private readonly _timeout; private readonly _proxyServerConfig?; constructor(clientConfig: ClientConfig); get timeout(): number; get proxyServerConfig(): ProxyServerConfig | undefined; }