matterbridge-roborock-vacuum-plugin
Version:
Matterbridge Roborock Vacuum Plugin
15 lines (11 loc) • 368 B
text/typescript
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;