UNPKG

homebridge-homeconnect

Version:

A Homebridge plugin that connects Home Connect appliances to Apple HomeKit

9 lines 509 B
import { Logger } from 'homebridge'; import { ServerEvent, ServerEventData, ServerPath, ServerRequest, ServerResponse } from '../server-ipc.js'; export declare class ClientIPC { readonly log: Logger; constructor(log: Logger); request<Path extends ServerPath>(path: Path, data: ServerRequest<Path>): Promise<ServerResponse<Path>>; onEvent<Event extends ServerEvent>(event: Event, callback: (evt: ServerEventData<Event>) => Promise<void> | void): void; } //# sourceMappingURL=client-ipc.d.ts.map