11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
export namespace SidebarEnums {
|
|
export const enum blocks {
|
|
Content = "Content",
|
|
DynamicContent = "DynamicContent",
|
|
JoinLoyaltyContact = "JoinLoyaltyContact",
|
|
ScriptedCard = "ScriptedCard",
|
|
TeaserCard = "TeaserCard",
|
|
QuickLinks = "QuickLinks",
|
|
}
|
|
}
|