15 lines
357 B
TypeScript
15 lines
357 B
TypeScript
export namespace BlocksEnums {
|
|
export const enum block {
|
|
Accordion = "Accordion",
|
|
CardsGrid = "CardsGrid",
|
|
Content = "Content",
|
|
DynamicContent = "DynamicContent",
|
|
Shortcuts = "Shortcuts",
|
|
Table = "Table",
|
|
TextCols = "TextCols",
|
|
TextContent = "TextContent",
|
|
UspGrid = "UspGrid",
|
|
HotelListing = "HotelListing",
|
|
}
|
|
}
|