13 lines
293 B
TypeScript
13 lines
293 B
TypeScript
export namespace BlocksEnums {
|
|
export const enum block {
|
|
CardsGrid = "CardsGrid",
|
|
Content = "Content",
|
|
DynamicContent = "DynamicContent",
|
|
Shortcuts = "Shortcuts",
|
|
Table = "Table",
|
|
TextCols = "TextCols",
|
|
TextContent = "TextContent",
|
|
UspGrid = "UspGrid",
|
|
}
|
|
}
|