UNPKG

homebridge-config-ui-x

Version:

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

21 lines (20 loc) 565 B
import { ConfigService } from '../../../core/config/config.service.js'; import { Logger } from '../../../core/logger/logger.service.js'; 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[]; }; private runHostCommand; updateAptPackage(): { ok: boolean; command: string[]; }; }