@redocly/cli
Version:
[@Redocly](https://redocly.com) CLI is your all-in-one API documentation utility. It builds, manages, improves, and quality-checks your API descriptions, all of which comes in handy for various phases of the API Lifecycle. Create your own rulesets to make
12 lines • 498 B
TypeScript
import { Client, ProxyAgent, fetch } from 'undici';
export type MtlsCerts = {
clientCert?: string;
clientKey?: string;
caCert?: string;
};
export type MtlsPerDomainCerts = {
[domain: string]: MtlsCerts;
};
export declare function createNetworkDispatcher(parsedPathToFetch: string, mtlsCerts?: MtlsCerts): ProxyAgent | Client | undefined;
export declare function withConnectionClient(perDomainCerts?: MtlsPerDomainCerts): typeof fetch;
//# sourceMappingURL=connection-client.d.ts.map