preiiter, eslint

This commit is contained in:
2025-07-18 17:48:12 +09:00
parent 036a220276
commit ffba4bdf09
154 changed files with 397 additions and 14485 deletions

View File

@@ -1,8 +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';
export declare class UsersController {
private readonly userService;
constructor(userService: UsersService);
changePassword(req: any, dto: ChangePasswordDto): Promise<SuccessResponseDto>;
changePassword(req: AuthRequest, dto: ChangePasswordDto): Promise<SuccessResponseDto>;
}