UNPKG

@senzil/cec-monitor

Version:

HDMI-CEC library with a simple monitor written on ES6 to make cec enabled apps.

18 lines (14 loc) 324 B
/** * Created by pablo on 9/12/17. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; class CECAdapterNotReadyError extends Error { constructor() { super('The CEC adapter is not ready to receive massages'); } } exports.default = CECAdapterNotReadyError;