UNPKG

@mas-soft/mas-core-server

Version:

main application

11 lines (10 loc) 437 B
import { AuthService } from './auth.service'; import { UsersService, USER } from '../..'; import { LoginModel } from "./login.model"; export declare class AuthController { private readonly authService; private readonly usersService; constructor(authService: AuthService, usersService: UsersService); register(res: any, createUserDto: USER): Promise<any>; login(res: any, login: LoginModel): Promise<any>; }