UNPKG

matterbridge-roborock-vacuum-plugin

Version:
15 lines (11 loc) 368 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 type DeviceStatusNotify = { duid: string } & DeviceStatus & CloudMessageResult;