UNPKG

@webfaas/webfaas-core

Version:

WebFaaS Framework - Core

13 lines (12 loc) 442 B
/// <reference types="node" /> import { KeyObject, PxfObject } from "tls"; export declare class ClientHTTPConfig { timeout: number; rejectUnauthorized: boolean; keepAlive: boolean; maxSockets: number; key?: string | Buffer | Array<Buffer | KeyObject>; cert?: string | Buffer | Array<string | Buffer>; pfx?: string | Buffer | Array<string | Buffer | PxfObject>; ca?: string | Buffer | Array<string | Buffer>; }