UNPKG

streamdeck-typescript

Version:

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

12 lines (9 loc) 292 B
import {StreamDeckPluginHandler} from '../src'; import {CounterAction} from './actions/counter.action'; export class Counter extends StreamDeckPluginHandler { constructor() { super(); new CounterAction(this, 'fun.shiro.counter.action'); } } new Counter();