mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
593 B
17 lines
593 B
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
import { Store } from '@ngxs/store';
|
|
import { OAuthService } from 'angular-oauth2-oidc';
|
|
import { Options } from '../../models/options';
|
|
import { ToasterService } from '@abp/ng.theme.shared';
|
|
export declare class LoginComponent {
|
|
private fb;
|
|
private oauthService;
|
|
private store;
|
|
private toasterService;
|
|
private options;
|
|
form: FormGroup;
|
|
inProgress: boolean;
|
|
constructor(fb: FormBuilder, oauthService: OAuthService, store: Store, toasterService: ToasterService, options: Options);
|
|
onSubmit(): void;
|
|
}
|