@elgato-stream-deck/core
Version:
An npm module for interfacing with the Elgato Stream Deck
34 lines • 973 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FakeLcdService = void 0;
class FakeLcdService {
calculateFillPanelDimensions(_options) {
// Not supported
return null;
}
async clearKey(_keyIndex) {
// Not supported
}
async clearPanel() {
// Not supported
}
async fillKeyColor(_keyIndex, _r, _g, _b) {
// Not supported
}
async fillKeyBuffer(_keyIndex, _imageBuffer, _options) {
// Not supported
}
async prepareFillKeyBuffer(_keyIndex, _imageBuffer, _options, _jsonSafe) {
// Not supported
throw new Error('Not supported');
}
async fillPanelBuffer(_imageBuffer, _options) {
// Not supported
}
async prepareFillPanelBuffer(_imageBuffer, _options, _jsonSafe) {
// Not supported
throw new Error('Not supported');
}
}
exports.FakeLcdService = FakeLcdService;
//# sourceMappingURL=fake.js.map