UNPKG

@prismicio/client

Version:

The official JavaScript + TypeScript client library for Prismic

20 lines (18 loc) 449 B
import { CustomTypeModelFieldType } from "./types.js"; //#region src/types/model/date.d.ts /** * A date custom type field. * * More details: {@link https://prismic.io/docs/date} */ interface CustomTypeModelDateField { type: typeof CustomTypeModelFieldType.Date; config?: { label?: string | null; placeholder?: string; default?: string; }; } //#endregion export { CustomTypeModelDateField }; //# sourceMappingURL=date.d.ts.map