summaryrefslogtreecommitdiff
path: root/school/node_modules/agent-base/dist/src/index.d.ts
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2023-01-10 14:54:04 +0100
committerMinteck <contact@minteck.org>2023-01-10 14:54:04 +0100
commit99c1d9af689e5325f3cf535c4007b3aeb8325229 (patch)
treee663b3c2ebdbd67c818ac0c5147f0ce1d2463cda /school/node_modules/agent-base/dist/src/index.d.ts
parent9871b03912fc28ad38b4037ebf26a78aa937baba (diff)
downloadpluralconnect-99c1d9af689e5325f3cf535c4007b3aeb8325229.tar.gz
pluralconnect-99c1d9af689e5325f3cf535c4007b3aeb8325229.tar.bz2
pluralconnect-99c1d9af689e5325f3cf535c4007b3aeb8325229.zip
Update - This is an automated commit
Diffstat (limited to 'school/node_modules/agent-base/dist/src/index.d.ts')
-rw-r--r--school/node_modules/agent-base/dist/src/index.d.ts78
1 files changed, 78 insertions, 0 deletions
diff --git a/school/node_modules/agent-base/dist/src/index.d.ts b/school/node_modules/agent-base/dist/src/index.d.ts
new file mode 100644
index 0000000..bc4ab74
--- /dev/null
+++ b/school/node_modules/agent-base/dist/src/index.d.ts
@@ -0,0 +1,78 @@
+/// <reference types="node" />
+import net from 'net';
+import http from 'http';
+import https from 'https';
+import { Duplex } from 'stream';
+import { EventEmitter } from 'events';
+declare function createAgent(opts?: createAgent.AgentOptions): createAgent.Agent;
+declare function createAgent(callback: createAgent.AgentCallback, opts?: createAgent.AgentOptions): createAgent.Agent;
+declare namespace createAgent {
+ interface ClientRequest extends http.ClientRequest {
+ _last?: boolean;
+ _hadError?: boolean;
+ method: string;
+ }
+ interface AgentRequestOptions {
+ host?: string;
+ path?: string;
+ port: number;
+ }
+ interface HttpRequestOptions extends AgentRequestOptions, Omit<http.RequestOptions, keyof AgentRequestOptions> {
+ secureEndpoint: false;
+ }
+ interface HttpsRequestOptions extends AgentRequestOptions, Omit<https.RequestOptions, keyof AgentRequestOptions> {
+ secureEndpoint: true;
+ }
+ type RequestOptions = HttpRequestOptions | HttpsRequestOptions;
+ type AgentLike = Pick<createAgent.Agent, 'addRequest'> | http.Agent;
+ type AgentCallbackReturn = Duplex | AgentLike;
+ type AgentCallbackCallback = (err?: Error | null, socket?: createAgent.AgentCallbackReturn) => void;
+ type AgentCallbackPromise = (req: createAgent.ClientRequest, opts: createAgent.RequestOptions) => createAgent.AgentCallbackReturn | Promise<createAgent.AgentCallbackReturn>;
+ type AgentCallback = typeof Agent.prototype.callback;
+ type AgentOptions = {
+ timeout?: number;
+ };
+ /**
+ * Base `http.Agent` implementation.
+ * No pooling/keep-alive is implemented by default.
+ *
+ * @param {Function} callback
+ * @api public
+ */
+ class Agent extends EventEmitter {
+ timeout: number | null;
+ maxFreeSockets: number;
+ maxTotalSockets: number;
+ maxSockets: number;
+ sockets: {
+ [key: string]: net.Socket[];
+ };
+ freeSockets: {
+ [key: string]: net.Socket[];
+ };
+ requests: {
+ [key: string]: http.IncomingMessage[];
+ };
+ options: https.AgentOptions;
+ private promisifiedCallback?;
+ private explicitDefaultPort?;
+ private explicitProtocol?;
+ constructor(callback?: createAgent.AgentCallback | createAgent.AgentOptions, _opts?: createAgent.AgentOptions);
+ get defaultPort(): number;
+ set defaultPort(v: number);
+ get protocol(): string;
+ set protocol(v: string);
+ callback(req: createAgent.ClientRequest, opts: createAgent.RequestOptions, fn: createAgent.AgentCallbackCallback): void;
+ callback(req: createAgent.ClientRequest, opts: createAgent.RequestOptions): createAgent.AgentCallbackReturn | Promise<createAgent.AgentCallbackReturn>;
+ /**
+ * Called by node-core's "_http_client.js" module when creating
+ * a new HTTP request with this Agent instance.
+ *
+ * @api public
+ */
+ addRequest(req: ClientRequest, _opts: RequestOptions): void;
+ freeSocket(socket: net.Socket, opts: AgentOptions): void;
+ destroy(): void;
+ }
+}
+export = createAgent;