contensis-core-api
Version:
A dependency library used by contensis-delivery-api and contensis-management-api
12 lines (11 loc) • 406 B
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[];
}