@prismicio/client
Version:
The official JavaScript + TypeScript client library for Prismic
16 lines (14 loc) • 322 B
text/typescript
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
}
}