auth.controller.d.ts 616 B

1234567891011121314151617181920212223242526272829
  1. import { AuthService } from './auth.service';
  2. export declare class AuthController {
  3. private readonly authService;
  4. constructor(authService: AuthService);
  5. health(): {
  6. module: string;
  7. status: string;
  8. phase: string;
  9. };
  10. me(): {
  11. id: string;
  12. email: string;
  13. name: string;
  14. roles: string[];
  15. };
  16. googleAuth(): {
  17. message: string;
  18. };
  19. googleCallback(): {
  20. message: string;
  21. };
  22. refresh(): {
  23. message: string;
  24. };
  25. logout(): {
  26. message: string;
  27. };
  28. }
  29. //# sourceMappingURL=auth.controller.d.ts.map