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