homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
16 lines (15 loc) • 429 B
TypeScript
import { Logger } from '@nestjs/common';
import { ConfigService } from '../../../core/config/config.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[];
};
}