UNPKG

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