UNPKG

matterbridge-roborock-vacuum-plugin

Version:
14 lines (11 loc) 260 B
import { Device } from './device.js'; import { Product } from './product.js'; import { Room } from './room.js'; export interface Home { id: number; name: string; products: Product[]; devices: Device[]; receivedDevices: Device[]; rooms: Room[]; }