UNPKG

homebridge-config-ui-x

Version:

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

18 lines (17 loc) 541 B
import { ConfigService } from '../../../core/config/config.service'; import { Logger } from '../../../core/logger/logger.service'; export declare class DockerService { private readonly configService; private readonly logger; constructor(configService: ConfigService, logger: Logger); getStartupScript(): Promise<{ script: string; }>; updateStartupScript(script: string): Promise<{ script: string; }>; restartDockerContainer(): Promise<{ ok: boolean; command: string; }>; }