export interface DataMap { [key: string]: any; } export type PromiseOrValue = Promise | T; export type AnalyticsEventModel = { Name: string; Scope: string; ExtraData: DataMap; MetaData: DataMap; Identities: DataMap; };