libs/core/showroom/src/showroom.model.ts
Properties |
[pageId: string]:
|
Defined in libs/core/showroom/src/showroom.model.ts:5
|
headerActions | |
Type |
PageInJourneyExampleData
|
import { BuildingBlockExampleDataItem } from './building-block-example-data.model';
export type PageInJourneyExampleData = Record<string, BuildingBlockExampleDataItem>;
export interface JourneyExampleData {
[pageId: string]: PageInJourneyExampleData;
headerActions: PageInJourneyExampleData;
}
// This interface is not used by taly-core but it's declared here to make it sharable between taly-common and taly-nx
export interface JourneyInsights {
uniqueBbs: string[];
pageDetails: {
pageId: string;
bbTitles: string[];
}[];
}