streamdeck-typescript
Version:
This library will help you build elgato stream deck plugins in typescript
12 lines • 391 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.StreamDeckAction = void 0;
class StreamDeckAction {
constructor(plugin, actionName) {
if (this._sd_events)
for (let event of this._sd_events)
event(actionName, this);
}
}
exports.StreamDeckAction = StreamDeckAction;
//# sourceMappingURL=stream-deck-action.js.map
;