UNPKG

streamdeck-typescript

Version:

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

13 lines (12 loc) 384 B
import { StreamDeckAction } from '../../src'; import { Counter } from '../counter'; export declare class CounterAction extends StreamDeckAction<Counter, CounterAction> { private plugin; private actionName; private keyUpTimer; constructor(plugin: Counter, actionName: string); private onAppear; private onKeyUp; private onKeyDown; private onSettings; }