homebridge-plugin-wrapper
Version:
Wrapper for Homebridge and NodeJS-HAP with reduced dependencies that allows to intercept plugin values and also send to them
10 lines • 506 B
TypeScript
import { Accessory } from "./Accessory";
/**
* Bridge is a special type of HomeKit Accessory that hosts other Accessories "behind" it. This way you
* can simply publish() the Bridge (with a single HAPServer on a single port) and all bridged Accessories
* will be hosted automatically, instead of needed to publish() every single Accessory as a separate server.
*/
export declare class Bridge extends Accessory {
constructor(displayName: string, UUID: string);
}
//# sourceMappingURL=Bridge.d.ts.map