Files
event-qr/dist/auth/auth.service.d.ts
2025-11-29 12:26:58 +01:00

11 lines
325 B
TypeScript

import { JwtService } from '@nestjs/jwt';
import { ConfigService } from '@nestjs/config';
export declare class AuthService {
private jwtService;
private configService;
constructor(jwtService: JwtService, configService: ConfigService);
login(password: string): Promise<{
accessToken: string;
}>;
}