UNPKG

streamdeck-typescript

Version:

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

19 lines (17 loc) 470 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; controller: string; }; }