UNPKG

streamdeck-typescript

Version:

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

7 lines (6 loc) 248 B
import { AcdData } from '../../acd-data'; import { WillAppearEvent } from './will-appear.event'; export interface WillDisappearEvent<Settings = any> extends AcdData { event: 'willDisappear'; payload: WillAppearEvent<Settings>['payload']; }