UNPKG

yeelight-awesome

Version:

The node.js client api to control yeelight device over WIFI

10 lines (9 loc) 258 B
import { Command } from "./command"; import { ICommandResult } from "./command-result"; import { CommandType } from "./enums"; export interface IEventResult { action: CommandType; command: Command; result: ICommandResult; success: boolean; }