UNPKG

@umbraco/json-models-builders

Version:
14 lines (13 loc) 389 B
import { DataTypeBuilder } from './dataTypeBuilder'; export declare class DecimalDataTypeBuilder extends DataTypeBuilder { step: number; min: number; max: number; placeholder: string; constructor(); withMin(min: number): this; withMax(max: number): this; withStep(step: number): this; withPlaceholder(placeholder: string): this; getValues(): any; }