zigbee-herdsman
Version:
An open source ZigBee gateway solution with node.js.
14 lines • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/* istanbul ignore file */
class Frame {
toBuffer() {
return Buffer.alloc(0);
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
static fromBuffer(buffer) {
return new Frame();
}
}
exports.default = Frame;
//# sourceMappingURL=frame.js.map