@senzil/cec-monitor
Version:
HDMI-CEC library with a simple monitor written on ES6 to make cec enabled apps.
18 lines (14 loc) • 353 B
JavaScript
/**
* Created by pablo on 9/12/17.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
class CECTimeoutError extends Error {
constructor(target, timeout) {
super(`CEC monitor hasn't gotten response in some time (${timeout} ms) from ${target}`);
}
}
exports.default = CECTimeoutError;