| 1234567891011121314151617181920212223242526272829 |
- import { AuthService } from './auth.service';
- export declare class AuthController {
- private readonly authService;
- constructor(authService: AuthService);
- health(): {
- module: string;
- status: string;
- phase: string;
- };
- me(): {
- id: string;
- email: string;
- name: string;
- roles: string[];
- };
- googleAuth(): {
- message: string;
- };
- googleCallback(): {
- message: string;
- };
- refresh(): {
- message: string;
- };
- logout(): {
- message: string;
- };
- }
- //# sourceMappingURL=auth.controller.d.ts.map
|