UNPKG

702 BTypeScriptView Raw
1import { OnInit } from "@angular/core";
2import { Observable } from "rxjs/Observable";
3import { FormGroup } from "@angular/forms";
4import { Store } from "@ngrx/store";
5import { ConfigModel } from "@soushians/config";
6import { UserModel } from "../../models";
7import * as FeatureReducer from "../../feature/feature.reducers";
8export declare class ProfileEditContainerComponent implements OnInit {
9 private store;
10 userInforamation$: Observable<UserModel>;
11 formGroup: FormGroup;
12 appConfig: Observable<ConfigModel<any>>;
13 groups: Observable<string[]>;
14 constructor(store: Store<FeatureReducer.FeatureState>);
15 ngOnInit(): void;
16 updateProfile(data: any): void;
17}