This commit is contained in:
2025-07-23 14:26:31 +09:00
parent afa9c4fe39
commit a3f591ab3a
35 changed files with 210 additions and 64 deletions

View File

@@ -1,9 +1,9 @@
import { UsersService } from './users.service';
import { ChangePasswordDto } from './dto/change-password.dto';
import { SuccessResponseDto } from 'src/common/dto/sucees-response.dto';
import { AuthRequest } from 'src/common/interfaces/auth-request.interface';
import { UserInfoResponseDto } from './dto/user-info-response.dto';
export declare class UsersController {
private readonly userService;
constructor(userService: UsersService);
changePassword(req: AuthRequest, dto: ChangePasswordDto): Promise<SuccessResponseDto>;
changePassword(req: AuthRequest, dto: ChangePasswordDto): Promise<UserInfoResponseDto>;
}