UNPKG

streamdeck-typescript

Version:

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

11 lines (10 loc) 241 B
/** * Data send from the didReceiveGlobalSettings event * @category Event Data */ export interface DidReceiveGlobalSettingsEvent<Settings = any> { event: 'didReceiveGlobalSettings'; payload: { settings: Settings; }; }