You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tryFullStack/backend/dist/auth/auth.service.d.ts

13 lines
571 B

3 weeks ago
import { JwtService } from '@nestjs/jwt';
import { UsersService } from 'src/users/users.service';
import { LoginUserDto } from 'src/auth/dto/login-user.dto';
import { CreateUserDto } from 'src/users/dto/create-user.dto';
2 weeks ago
import { LoginResponseDto } from './dto/login-response.dto';
3 weeks ago
export declare class AuthService {
private userService;
private jwtService;
constructor(userService: UsersService, jwtService: JwtService);
signup(dto: CreateUserDto): Promise<import("../users/user.entity").User>;
2 weeks ago
login(dto: LoginUserDto): Promise<LoginResponseDto>;
3 weeks ago
}