25 lines
908 B
TypeScript
25 lines
908 B
TypeScript
export namespace ContentPageEnum {
|
|
export namespace ContentStack {
|
|
export const enum blocks {
|
|
Accordion = "ContentPageBlocksAccordion",
|
|
CardsGrid = "ContentPageBlocksCardsGrid",
|
|
Content = "ContentPageBlocksContent",
|
|
DynamicContent = "ContentPageBlocksDynamicContent",
|
|
Shortcuts = "ContentPageBlocksShortcuts",
|
|
TextCols = "ContentPageBlocksTextCols",
|
|
UspGrid = "ContentPageBlocksUspGrid",
|
|
Table = "ContentPageBlocksTable",
|
|
HotelListing = "ContentPageBlocksHotelListing",
|
|
}
|
|
|
|
export const enum sidebar {
|
|
Content = "ContentPageSidebarContent",
|
|
DynamicContent = "ContentPageSidebarDynamicContent",
|
|
JoinLoyaltyContact = "ContentPageSidebarJoinLoyaltyContact",
|
|
ScriptedCard = "ContentPageSidebarScriptedCard",
|
|
TeaserCard = "ContentPageSidebarTeaserCard",
|
|
QuickLinks = "ContentPageSidebarShortcuts",
|
|
}
|
|
}
|
|
}
|