@akveo/nga-auth
Version:
@akveo/nga-auth
16 lines (15 loc) • 557 B
TypeScript
import { Router } from '@angular/router';
import { NgaUser } from '../../models/user';
import { NgaAuthService } from '../../services/auth.service';
export declare class NgaRequestPasswordComponent {
protected service: NgaAuthService;
protected router: Router;
redirectDelay: number;
submitted: boolean;
errors: string[];
messages: string[];
user: NgaUser;
constructor(service: NgaAuthService, router: Router);
requestPass(provider: string): void;
getConfigValue(provider: string, key: string): any;
}