/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { OnDestroy, OnInit } from '@angular/core'; import { FormBuilder, FormGroup } from '@angular/forms'; import { Store } from '@ngrx/store'; import { MagFrameState } from 'ng-stalk/core/frame-store'; import { MagInitConfig, MagSupport } from 'ng-stalk/core/model'; import { MagConfigService } from 'ng-stalk/core/service'; import * as i0 from "@angular/core"; export declare class MagLoginPageComponent implements OnInit, OnDestroy { private _formBuilder; private magSupport; private magConfigService; private store; loginForm: FormGroup; loginFormErrors: any; private _unsubscribeAll; logoUrl: string; componentId: string; constructor(_formBuilder: FormBuilder, magSupport: MagSupport, magConfigService: MagConfigService, store: Store); /** * On init */ ngOnInit(): void; /** * On destroy */ ngOnDestroy(): void; /** * On form values changed */ onLoginFormValuesChanged(): void; /** * invalid 한 폼인지 체크한다. */ get isInvalidForm(): boolean; submit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }