0.6.4 • Published 7 months ago

@types/forever-agent v0.6.4

Weekly downloads
122,412
License
MIT
Repository
github
Last release
7 months ago

Installation

npm install --save @types/forever-agent

Summary

This package contains type definitions for forever-agent (https://github.com/mikeal/forever-agent).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/forever-agent.

index.d.ts

// Type definitions for forever-agent 0.6
// Project: https://github.com/mikeal/forever-agent
// Definitions by: Dmitry Guketlev <https://github.com/yavanosta>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node" />

import { Agent as HttpAgent, AgentOptions as HttpAgentOptions } from "http";

export = ForeverAgentModule;

interface ForeverAgentOptions extends HttpAgentOptions {
    minSockets?: number | undefined;
}

declare class ForeverAgent extends HttpAgent {
    constructor(options?: ForeverAgentOptions);

    static defaultMinSockets: number;
}

declare class ForeverAgentSSL extends ForeverAgent {
    constructor(options?: ForeverAgentOptions);
}

declare const ForeverAgentModule: typeof ForeverAgent & {
    SSL: typeof ForeverAgentSSL,
};

Additional Details

  • Last updated: Tue, 06 Jul 2021 20:33:00 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by Dmitry Guketlev.

0.6.3

7 months ago

0.6.2

8 months ago

0.6.4

7 months ago

0.6.1

3 years ago

0.6.0

6 years ago