@kontent-ai/delivery-sdk
Version:
Official Kontent.AI Delivery API SDK
17 lines (16 loc) • 400 B
text/typescript
/**
* Represents codename of Kontent.ai element types
*/
export enum ElementType {
Text = 'text',
Number = 'number',
ModularContent = 'modular_content',
Asset = 'asset',
DateTime = 'date_time',
RichText = 'rich_text',
MultipleChoice = 'multiple_choice',
UrlSlug = 'url_slug',
Taxonomy = 'taxonomy',
Custom = 'custom',
Unknown = 'unknown'
}