2024-05-23 23:00:56 +05:30
|
|
|
import { AnalyticsEvent, CtaData } from "../..";
|
2024-04-18 15:45:20 +05:30
|
|
|
import { Widget } from "../Widget";
|
2024-03-27 20:36:03 +05:30
|
|
|
|
|
|
|
|
export interface ScreenMetaData {
|
|
|
|
|
backButtonCta?: CtaData;
|
|
|
|
|
redirectionCta?: CtaData;
|
2024-04-18 15:45:20 +05:30
|
|
|
floatingWidgets?: Widget[];
|
2024-05-14 23:40:14 +05:30
|
|
|
screenProperties?: Array<LineItem>;
|
2024-05-23 23:00:56 +05:30
|
|
|
analyticsEvent?: AnalyticsEvent;
|
2024-03-27 20:36:03 +05:30
|
|
|
}
|
2024-05-14 23:40:14 +05:30
|
|
|
|
2024-10-21 23:57:59 +05:30
|
|
|
export type LineItem = {
|
2024-05-14 23:40:14 +05:30
|
|
|
key?: string;
|
|
|
|
|
value?: string | null;
|
|
|
|
|
data?: any | null;
|
|
|
|
|
};
|