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