backend base

This commit is contained in:
2025-07-15 17:32:19 +09:00
parent 99e08bb02f
commit 6b009b7c22
68 changed files with 13865 additions and 0 deletions

14
backend/dist/auth/auth.service.d.ts vendored Executable file
View File

@@ -0,0 +1,14 @@
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';
export declare class AuthService {
private userService;
private jwtService;
constructor(userService: UsersService, jwtService: JwtService);
validateUser(name: string, password: string): Promise<any>;
login(dto: LoginUserDto): Promise<{
access_token: string;
}>;
signup(dto: CreateUserDto): Promise<import("../users/user.entity").User>;
}