import ICommand from './ICommand'; /** * Received command event interface from signageOS. */ interface ICommandEvent { type: 'command'; /** * Command data received from occurred event. */ command: ICommand; } export default ICommandEvent; export interface ITypedCommandEvent { type: 'command'; command: T; }