UNPKG

@chazepps/homebridge-hejhome

Version:

The Hejhome plugin allows you to access your Hejhome device(s) from HomeKit.

15 lines (14 loc) 342 B
import { HejhomePlatform } from '../platform.js'; export declare const getUser: (platform: HejhomePlatform) => Promise<MemberList>; interface Member { homeName: string; admin: boolean; name: string; uid: string; homeId: string | null; memberAccount: string; } interface MemberList { member: Member[]; } export {};