UNPKG

homebridge-config-ui-x

Version:

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

9 lines (8 loc) 377 B
import type { CanActivate } from '@nestjs/common'; import type { Observable } from 'rxjs'; import { ConfigService } from '../../core/config/config.service.js'; export declare class SetupWizardGuard implements CanActivate { private readonly configService; constructor(configService: ConfigService); canActivate(): boolean | Promise<boolean> | Observable<boolean>; }