import { Room } from "../Room"; /** * Houses are the highest level objects in the library. They hold an array of [[Room]]s * @example * ```jsx * const device = new Device({ * name:"testDevice", * actions:[ * new HttpAction({ * name:"on", * method:"GET", * base:"http://device.ip/", * path:"turnOn" * }) * ] * }) * * const controller = new Controller({ * name:"Test Controller", * layout:[ *