Open Source Web Application Framework for ASP.NET Core
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.
 
 
 
 
 
 

20 lines
686 B

import { Profile } from '@abp/ng.core';
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms';
import { Store } from '@ngxs/store';
import { Observable } from 'rxjs';
export declare class ProfileComponent implements OnChanges {
private fb;
private store;
protected _visible: any;
visible: boolean;
visibleChange: EventEmitter<boolean>;
profile$: Observable<Profile.Response>;
form: FormGroup;
modalBusy: boolean;
constructor(fb: FormBuilder, store: Store);
buildForm(): void;
submit(): void;
openModal(): void;
ngOnChanges({ visible }: SimpleChanges): void;
}