import type { CustomTypeModelFieldType } from "./types"; import type { CustomTypeModelLinkSelectType } from "./link"; /** * A Content Relationship Custom Type field. * * More details: * {@link https://prismic.io/docs/core-concepts/link-content-relationship} */ export interface CustomTypeModelContentRelationshipField { type: typeof CustomTypeModelFieldType.Link; config?: { label?: string | null; placeholder?: string; select: typeof CustomTypeModelLinkSelectType.Document; customtypes?: readonly CustomTypeIDs[]; tags?: readonly Tags[]; }; }