SAP-BTP-Spielwiese/app1/node_modules/http-cookie-agent/index.d.ts

32 lines
1.1 KiB
TypeScript
Raw Normal View History

import * as http from 'http';
import * as https from 'https';
import { CookieJar } from 'tough-cookie';
type Primitive = string | number | bigint | boolean | symbol | null | undefined;
type Diff<T, U> = T extends U ? never : T;
export type CookieAgentOptions = {
jar: CookieJar;
};
type CookieAgent<BaseAgent extends http.Agent> = BaseAgent & {
jar: CookieJar;
};
export function createCookieAgent<
BaseAgent extends http.Agent = http.Agent,
BaseAgentOptions = unknown,
BaseAgentConstructorRestParams extends unknown[] = unknown[],
>(
BaseAgent: new (options: BaseAgentOptions, ...rest: BaseAgentConstructorRestParams) => BaseAgent,
): new (
options: Diff<BaseAgentOptions, Primitive> & CookieAgentOptions,
...rest: BaseAgentConstructorRestParams
) => CookieAgent<BaseAgent>;
export const HttpCookieAgent: new (options: http.AgentOptions & CookieAgentOptions) => CookieAgent<http.Agent>;
export const HttpsCookieAgent: new (options: https.AgentOptions & CookieAgentOptions) => CookieAgent<https.Agent>;
export const MixedCookieAgent: new (
options: http.AgentOptions & https.AgentOptions & CookieAgentOptions,
) => CookieAgent<https.Agent>;