homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge.
15 lines (14 loc) • 348 B
TypeScript
export type BridgeStatus = 'pending' | 'ok' | 'down';
export interface ChildBridgeMetadata {
status: BridgeStatus;
paired?: boolean | null;
setupUri?: string | null;
username: string;
port?: number;
pin: string;
name: string;
plugin: string;
identifier: string;
pid?: number;
manuallyStopped: boolean;
}