UNPKG

homebridge-config-ui-x

Version:

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

13 lines (12 loc) 410 B
import { AuthService } from '../../core/auth/auth.service'; import { UserDto } from '../users/users.dto'; export declare class SetupWizardController { private authService; constructor(authService: AuthService); setupFirstUser(body: UserDto): Promise<UserDto>; generateSetupWizardToken(): Promise<{ access_token: string; token_type: string; expires_in: number; }>; }