UNPKG

dirigera

Version:

A TypeScript client for IKEA's DIRIGERA smart home hub

8 lines (7 loc) 277 B
import type { Event } from './types/event/Event'; export declare function initializeWebSocket({ ip, accessToken, callback, }: { ip: string; accessToken: string; callback: (o: Event) => void | Promise<void>; }): void; export declare function closeWebSocket(): void;