@sunrise-upc/mobile-prod-card 3.2.3-beta.2 → 3.2.3-beta.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -16,3 +16,14 @@ export interface ErrorEventInfoInterface {
16
16
  message_reason: string;
17
17
  }
18
18
  export declare const trackErrorEvent: (message_type: string, message_title: string, message_source: string, message_reason: string) => void;
19
+ export interface DataLayerErrorEvent {
20
+ event: string;
21
+ event_name: string;
22
+ message_guid: string;
23
+ message_reason: string;
24
+ message_source: string;
25
+ message_title: string;
26
+ message_type: string;
27
+ message_apiinfo: string;
28
+ }
29
+ export declare const errorTrackingDataLayer: (response: any) => void;