UNPKG

homebridge-framework

Version:
28 lines (27 loc) 800 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Represents the registration object of the platform. */ var HomebridgePlatformRegistration = /** @class */ (function () { function HomebridgePlatformRegistration() { /** * Gets or sets the homebridge API. */ this.api = null; /** * Gets or sets the logger. */ this.logger = null; /** * Gets or sets the platform configuration. */ this.configuration = null; /** * Gets or sets the cached accessories. */ this.cachedPlatformAccessories = new Array(); } return HomebridgePlatformRegistration; }()); exports.HomebridgePlatformRegistration = HomebridgePlatformRegistration;