@chazepps/homebridge-hejhome
Version:
The Hejhome plugin allows you to access your Hejhome device(s) from HomeKit.
13 lines (12 loc) • 304 B
TypeScript
import { HejhomePlatform } from '../platform.js';
export declare const getRooms: (platform: HejhomePlatform, familyId: number) => Promise<FamilyData>;
interface Room {
name: string;
room_id: number;
}
interface FamilyData {
name: string;
rooms: Room[];
familyId: number;
}
export {};