homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
10 lines (9 loc) • 386 B
TypeScript
import { AuthService } from '../../core/auth/auth.service';
export declare class UsersController {
private authService;
constructor(authService: AuthService);
getUsers(): Promise<import("../../core/auth/auth.service").UserInterface[]>;
addUser(body: any): Promise<void>;
updateUser(param: any, body: any): Promise<void>;
deleteUser(param: any): Promise<void>;
}