UNPKG

streamdeck-typescript

Version:

This library will help you build elgato stream deck plugins in typescript

14 lines 452 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Counter = void 0; const src_1 = require("../src"); const counter_action_1 = require("./actions/counter.action"); class Counter extends src_1.StreamDeckPluginHandler { constructor() { super(); new counter_action_1.CounterAction(this, 'fun.shiro.counter.action'); } } exports.Counter = Counter; new Counter(); //# sourceMappingURL=counter.js.map