UNPKG

matterbridge-roborock-vacuum-plugin

Version:
12 lines 222 B
/** * Domain entity representing a room in a Apple Home. */ export class RoomEntity { id; name; constructor(id, name) { this.id = id; this.name = name; } } //# sourceMappingURL=Room.js.map