Files
web/types/enums/contentPage.ts

24 lines
856 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",
}
export const enum sidebar {
Content = "ContentPageSidebarContent",
ContentCard = "ContentPageSidebarContentCard",
DynamicContent = "ContentPageSidebarDynamicContent",
JoinLoyaltyContact = "ContentPageSidebarJoinLoyaltyContact",
ScriptedCard = "ContentPageSidebarScriptedCard",
QuickLinks = "ContentPageSidebarShortcuts",
}
}
}