File: //var/www/api-management/dist/app/auth/controllers/auth.controller.d.ts
import { AuthService } from '../services/auth.service';
import { LoginDto } from '../dto/login.dto';
export declare class AuthController {
private readonly authService;
userService: any;
constructor(authService: AuthService);
login(loginDto: LoginDto): Promise<{
data: any;
message: any;
summary: any;
totalRecords: number;
rows: any;
} | {
data: any;
message: any;
summary: any;
totalRecords?: undefined;
rows?: undefined;
}>;
}