UNPKG

node-red-contrib-homekit-bridged

Version:
17 lines (16 loc) 554 B
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;