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

14 lines
320 B
TypeScript

import { AuthService } from './auth.service';
export declare class AuthController {
private readonly authService;
constructor(authService: AuthService);
login(body: {
password: string;
}): Promise<{
accessToken: string;
}>;
logout(): Promise<{
success: boolean;
}>;
}