UNPKG

@blackmagic-controller/node

Version:

An npm module for interfacing with the Blackmagic usb/bluetooth controllers in node

15 lines 448 B
import { BlackmagicControllerProxy } from '@blackmagic-controller/core'; export class BlackmagicControllerNode extends BlackmagicControllerProxy { clearOnClose; constructor(device, clearOnClose) { super(device); this.clearOnClose = clearOnClose; } async close() { if (this.clearOnClose) { await this.clearPanel(); } await super.close(); } } //# sourceMappingURL=wrapper.js.map