backend base
This commit is contained in:
11
backend/dist/auth/auth.controller.d.ts
vendored
Executable file
11
backend/dist/auth/auth.controller.d.ts
vendored
Executable file
@@ -0,0 +1,11 @@
|
||||
import { AuthService } from './auth.service';
|
||||
import { CreateUserDto } from 'src/users/dto/create-user.dto';
|
||||
import { LoginUserDto } from 'src/auth/dto/login-user.dto';
|
||||
export declare class AuthController {
|
||||
private readonly authService;
|
||||
constructor(authService: AuthService);
|
||||
signup(dto: CreateUserDto): Promise<import("../users/user.entity").User>;
|
||||
login(dto: LoginUserDto): Promise<{
|
||||
access_token: string;
|
||||
}>;
|
||||
}
|
Reference in New Issue
Block a user