UNPKG

@prismicio/client

Version:

The official JavaScript + TypeScript client library for Prismic

14 lines (13 loc) 324 B
import type { CustomTypeModelFieldType } from "./types"; /** * A UID custom type field. * * More details: {@link https://prismic.io/docs/uid} */ export interface CustomTypeModelUIDField { type: typeof CustomTypeModelFieldType.UID; config?: { label?: string | null; placeholder?: string; }; }