@umbraco/json-models-builders
Version:
Builders and models for Umbraco Sites
14 lines (13 loc) • 434 B
TypeScript
import { DataTypeBuilder } from "./dataTypeBuilder";
export declare class TrueFalseDataTypeBuilder extends DataTypeBuilder {
isDefault: boolean;
showLabels: boolean;
labelOn: string;
labelOff: string;
constructor();
withIsDefault(isDefault: boolean): this;
withShowLabels(showLabels: boolean): this;
withLabelOn(labelOn: string): this;
withLabelOff(labelOff: string): this;
getValues(): any;
}