contensis-core-api
Version:
A dependency library used by contensis-delivery-api and contensis-management-api
13 lines (11 loc) • 408 B
text/typescript
import { ContentTypeBase, ContentTypeGroup } from './ContentTypeBase';
export interface ContentType extends ContentTypeBase<'entry' | 'asset'> {
defaultLanguage?: string;
entryTitleField?: string;
entryDescriptionField?: string;
supportedLanguages?: string[];
workflowId?: string;
previewUrl?: string;
defaultParentNodeId?: string;
groups?: ContentTypeGroup[];
}