auth.service.d.ts 297 B

1234567891011121314
  1. export declare class AuthService {
  2. getHealth(): {
  3. module: string;
  4. status: string;
  5. phase: string;
  6. };
  7. getCurrentUser(): {
  8. id: string;
  9. email: string;
  10. name: string;
  11. roles: string[];
  12. };
  13. }
  14. //# sourceMappingURL=auth.service.d.ts.map