UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge.

18 lines (17 loc) 734 B
import { WsException } from '@nestjs/websockets'; import { ChildBridgesService } from './child-bridges.service.js'; export declare class ChildBridgesGateway { private readonly childBridgesService; constructor(childBridgesService: ChildBridgesService); getChildBridges(): Promise<WsException | import("./child-bridges.interfaces.js").ChildBridgeMetadata[]>; watchChildBridgeStatus(client: any): Promise<void>; restartChildBridge(client: any, payload: any): Promise<WsException | { ok: boolean; }>; stopChildBridge(client: any, payload: any): Promise<WsException | { ok: boolean; }>; startChildBridge(client: any, payload: any): Promise<WsException | { ok: boolean; }>; }