UNPKG

514 BTypeScriptView Raw
1import { Store } from "@ngrx/store";
2import { Observable } from "rxjs/Observable";
3import { AppState } from "../user.reducers";
4import { UserConfigurationService } from "./user-configuration.service";
5import { UserModel } from "../models/user.model";
6export declare class UserFacadeService {
7 private store;
8 private configService;
9 constructor(store: Store<AppState>, configService: UserConfigurationService);
10 getDisplayName(): Observable<string>;
11 getInfo(): Observable<UserModel>;
12}