@agility/management-sdk
Version:
Agility CMS Tyescript SDK for Management API.
18 lines (17 loc) • 362 B
TypeScript
/**
* Enum representing the content definition type ID values in Agility CMS
*/
export declare enum ContentDefinitionTypeID {
/**
* List type content definition (0)
*/
List = 0,
/**
* Single item type content definition (1)
*/
SingleItem = 1,
/**
* Component type content definition (2)
*/
Component = 2
}