17 lines
520 B
TypeScript
17 lines
520 B
TypeScript
export namespace LoyaltyPageEnum {
|
|
export namespace ContentStack {
|
|
export const enum blocks {
|
|
CardsGrid = "LoyaltyPageBlocksCardsGrid",
|
|
Content = "LoyaltyPageBlocksContent",
|
|
DynamicContent = "LoyaltyPageBlocksDynamicContent",
|
|
Shortcuts = "LoyaltyPageBlocksShortcuts",
|
|
}
|
|
|
|
export const enum sidebar {
|
|
Content = "LoyaltyPageSidebarContent",
|
|
DynamicContent = "LoyaltyPageSidebarDynamicContent",
|
|
JoinLoyaltyContact = "LoyaltyPageSidebarJoinLoyaltyContact",
|
|
}
|
|
}
|
|
}
|