UNPKG

pulseauthenticate

Version:

Common Authentication library for pulse angular apps

22 lines (21 loc) 769 B
import { OnInit } from '@angular/core'; import { Router, ActivatedRoute } from '@angular/router'; import { AlertService } from '../services/alert.service'; import { AuthenticationService } from '../services/authentication.service'; export declare class LoginComponent implements OnInit { private route; private router; private authenticationService; private alertService; model: any; loading: boolean; returnUrl: string; showLoginPage: boolean; projectName: string; constructor(route: ActivatedRoute, router: Router, authenticationService: AuthenticationService, alertService: AlertService); ngOnInit(): void; login(): void; showForgotPassword(): void; forgotPassword(): void; cancelForgotPassword(): void; }