Type alias HTTPContructorOptions

HTTPContructorOptions: Partial<HTTPOptions> & {
    inject: {
        logger: Logger;
        nodeFetch: NodeFetch;
    };
}

The options to construct a HTTP.

Type declaration

  • inject: {
        logger: Logger;
        nodeFetch: NodeFetch;
    }

    A dictionary with the dependencies to inject.

Generated using TypeDoc