UNPKG

streamdeck-typescript

Version:

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

18 lines (16 loc) 442 B
import { AcdData } from '../../acd-data'; import { Coordinates } from '../../coordinates'; import { StateType } from '../../enums'; /** * Data sent from the willAppear event * @category Event Data */ export interface WillAppearEvent<Settings = any> extends AcdData { event: 'willAppear'; payload: { settings: Settings; coordinates: Coordinates; state: StateType; isInMultiAction: boolean; }; }