Interface ContentType

Definition of a content type

interface ContentType {
    description: string;
    displayField: string;
    fields: ContentTypeField[];
    name: string;
    sys: ContentTypeSys;
}

Properties

description: string
displayField: string
name: string