UNPKG

streamdeck-typescript

Version:

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

7 lines (6 loc) 223 B
import { AcdData } from '../../acd-data'; import { KeyDownEvent } from './key-down.event'; export interface KeyUpEvent<Settings = any> extends AcdData { event: 'keyUp'; payload: KeyDownEvent<Settings>['payload']; }