import type { CustomTypeModelFieldType } from "./types"; /** * A Timestamp Custom Type field. * * More details: {@link https://prismic.io/docs/core-concepts/timestamp} */ export interface CustomTypeModelTimestampField { type: typeof CustomTypeModelFieldType.Timestamp; config?: { label?: string | null; placeholder?: string; default?: string; }; }