Files
dispatcher_ng/dist/AHomematicItem.js
Wolfgang Hottgenroth 8d85314fc9 typescriptifying
2018-01-09 16:36:14 +01:00

14 lines
558 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const AItem_1 = require("./AItem");
class AHomematicItem extends AItem_1.AItem {
constructor(floor, room, item, hmId) {
super(floor, room, item);
this.hmId = hmId;
this.homegearTopicPre = 'homegear/instance1';
this.actionTopicPre = `${this.homegearTopicPre}/set/${this.hmId}`;
this.deviceTopicPre = `${this.homegearTopicPre}/plain/${this.hmId}`;
}
}
exports.AHomematicItem = AHomematicItem;
//# sourceMappingURL=AHomematicItem.js.map