UNPKG

@prismicio/client

Version:

The official JavaScript + TypeScript client library for Prismic

15 lines (14 loc) 354 B
import type { CustomTypeModelFieldType } from "./types"; /** * A date custom type field. * * More details: {@link https://prismic.io/docs/date} */ export interface CustomTypeModelDateField { type: typeof CustomTypeModelFieldType.Date; config?: { label?: string | null; placeholder?: string; default?: string; }; }