UNPKG

streamdeck-typescript

Version:

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

11 lines (10 loc) 198 B
/** * Data send from the sendToPlugin event * @category Event Data */ export interface SendToPluginEvent { action: string; event: 'sendToPlugin'; context: string; payload: any; }