UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

19 lines (18 loc) 523 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const helpers_1 = require("../helpers"); class InternalProvidersStorage { constructor() { this._httpAdapterHost = new helpers_1.HttpAdapterHost(); } get httpAdapterHost() { return this._httpAdapterHost; } get httpAdapter() { return this._httpAdapter; } set httpAdapter(httpAdapter) { this._httpAdapter = httpAdapter; } } exports.InternalProvidersStorage = InternalProvidersStorage;