UNPKG

streamdeck-typescript

Version:

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

14 lines (13 loc) 300 B
import { DeviceType } from '../../enums'; export interface DeviceDidConnectEvent { event: 'deviceDidConnect'; device: string; deviceInfo: { name: string; type: DeviceType | number; size: { columns: number; rows: number; }; }; }