node-red-contrib-homekit-bridged
Version:
Node-RED nodes to simulate Apple HomeKit devices.
17 lines (16 loc) • 554 B
TypeScript
import { Accessory, Categories } from 'hap-nodejs';
import BonjourMulticastOptions from './hap-nodejs/BonjourMulticastOptions';
import HAPHostConfigType from './HAPHostConfigType';
import HostType from './HostType';
import NodeType from './NodeType';
type HAPHostNodeType = NodeType & {
config: HAPHostConfigType;
mdnsConfig: BonjourMulticastOptions;
accessoryCategory: Categories;
published: boolean;
bridgeUsername: string;
publish: () => boolean;
hostType: HostType;
host: Accessory;
};
export default HAPHostNodeType;