import { BehaviorSubject } from 'rxjs'; import { User } from 'ftb-cmpts/models/user.model'; export interface AppState { appKey: string; user$: BehaviorSubject; token$: BehaviorSubject; environment: { hosts: { API: string; STATS: string; IGRAPHICS: string; GRAPHQL: string; PHOTO: string; LOCAL: string; }; }; }