UNPKG

matterbridge-roborock-vacuum-plugin

Version:
17 lines (13 loc) 378 B
import { DeviceStatus, VacuumErrorCode } from '../index.js'; import { CloudMessageResult } from './messageResult.js'; export interface BatteryMessage { duid: string; percentage: number; } export interface DeviceErrorMessage { duid: string; errorCode: VacuumErrorCode; } export interface DeviceStatusNotify extends DeviceStatus, CloudMessageResult { duid: string; }