@umbraco/json-models-builders
Version:
Builders and models for Umbraco Sites
18 lines (17 loc) • 572 B
TypeScript
import { DataTypeBuilder } from "./dataTypeBuilder";
export declare class SliderDataTypeBuilder extends DataTypeBuilder {
minVal: number;
maxVal: number;
enableRange: boolean;
initVal1: number;
initVal2: number;
step: number;
constructor();
withMinValue(minValue: number): this;
withMaxValue(maxValue: number): this;
withEnableRange(enableRange: boolean): this;
withInitialValueOne(initialValueOne: number): this;
withInitialValueTwo(initialValueTwo: number): this;
withStep(step: number): this;
getValues(): any;
}