UNPKG

@prismicio/client

Version:

The official JavaScript + TypeScript client library for Prismic

14 lines (12 loc) 334 B
import type { CustomTypeModelFieldType } from "./types" /** @deprecated - Legacy field. Use `CustomTypeModelNumberField` instead. */ export interface CustomTypeModelRangeField { type: typeof CustomTypeModelFieldType.Range config?: { label?: string | null placeholder?: string min?: number max?: number step?: number } }