UNPKG

@prismicio/client

Version:

The official JavaScript + TypeScript client library for Prismic

21 lines (19 loc) 477 B
import { CustomTypeModelFieldType } from "./types.js"; //#region src/types/model/number.d.ts /** * A number custom type field. * * More details: {@link https://prismic.io/docs/number} */ interface CustomTypeModelNumberField { type: typeof CustomTypeModelFieldType.Number; config?: { label?: string | null; placeholder?: string; min?: number; max?: number; }; } //#endregion export { CustomTypeModelNumberField }; //# sourceMappingURL=number.d.ts.map