UNPKG

@umbraco/json-models-builders

Version:
14 lines (13 loc) 434 B
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; }