Interface FieldItem

Definition of an item belonging to the content type field

interface FieldItem {
    linkType?: "Entry" | "Asset";
    type: "Link" | "ResourceLink" | "Symbol";
    validations: ContentTypeFieldValidation[];
}

Properties

linkType?: "Entry" | "Asset"
type: "Link" | "ResourceLink" | "Symbol"