1 | import { Store } from "@ngrx/store";
|
2 | import { BehaviorSubject } from "rxjs/BehaviorSubject";
|
3 | import { UserModuleConfig } from "../user.config";
|
4 | export declare class UserConfigurationService {
|
5 | private store;
|
6 | private _config;
|
7 | readonly config: UserModuleConfig;
|
8 | config$: BehaviorSubject<UserModuleConfig>;
|
9 | constructor(configFile: any, store: Store<any>);
|
10 | }
|