@logitech-mx-creative-console/node
Version:
An npm module for interfacing with the Logitech MX Creative Console in node
15 lines • 477 B
JavaScript
import { MXCreativeConsoleProxy } from '@logitech-mx-creative-console/core';
export class MXCreativeConsoleNode extends MXCreativeConsoleProxy {
resetToLogoOnClose;
constructor(device, resetToLogoOnClose) {
super(device);
this.resetToLogoOnClose = resetToLogoOnClose;
}
async close() {
if (this.resetToLogoOnClose) {
await this.resetToLogo();
}
await super.close();
}
}
//# sourceMappingURL=wrapper.js.map