UNPKG

homebridge-config-ui-x

Version:

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

16 lines (15 loc) 450 B
import { ConfigService } from '../../../core/config/config.service'; import { Logger } from '../../../core/logger/logger.service'; export declare class LinuxService { private readonly configService; private readonly logger; constructor(configService: ConfigService, logger: Logger); restartHost(): { ok: boolean; command: string[]; }; shutdownHost(): { ok: boolean; command: string[]; }; }