1 | "use strict";
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.InternalProvidersStorage = void 0;
|
4 | const http_adapter_host_1 = require("../helpers/http-adapter-host");
|
5 | class InternalProvidersStorage {
|
6 | constructor() {
|
7 | this._httpAdapterHost = new http_adapter_host_1.HttpAdapterHost();
|
8 | }
|
9 | get httpAdapterHost() {
|
10 | return this._httpAdapterHost;
|
11 | }
|
12 | get httpAdapter() {
|
13 | return this._httpAdapter;
|
14 | }
|
15 | set httpAdapter(httpAdapter) {
|
16 | this._httpAdapter = httpAdapter;
|
17 | }
|
18 | }
|
19 | exports.InternalProvidersStorage = InternalProvidersStorage;
|