homebridge-framework
Version:
Framework for easy creation of homebridge plugins.
28 lines (27 loc) • 800 B
JavaScript
;
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;