UNPKG

1.06 kBTypeScriptView Raw
1import { AppStatus, IAuth, IAuthModules, IClient, ICombinedTokenContext, IConfig, ICordova, ICore, IDeploy, IDevice, IEventEmitter, IInsights, ILogger, IFacebookAuth, IGoogleAuth, IPush, ISingleUserService, IStorageStrategy, IUserContext } from './definitions';
2/**
3 * @hidden
4 */
5export declare class Container {
6 readonly appStatus: AppStatus;
7 readonly config: IConfig;
8 readonly eventEmitter: IEventEmitter;
9 readonly logger: ILogger;
10 readonly localStorageStrategy: IStorageStrategy;
11 readonly sessionStorageStrategy: IStorageStrategy;
12 readonly authTokenContext: ICombinedTokenContext;
13 readonly client: IClient;
14 readonly insights: IInsights;
15 readonly core: ICore;
16 readonly device: IDevice;
17 readonly cordova: ICordova;
18 readonly userContext: IUserContext;
19 readonly singleUserService: ISingleUserService;
20 readonly authModules: IAuthModules;
21 readonly auth: IAuth;
22 readonly facebookAuth: IFacebookAuth;
23 readonly googleAuth: IGoogleAuth;
24 readonly push: IPush;
25 readonly deploy: IDeploy;
26}