UNPKG

@pilotlab/lux-attributes

Version:

A luxurious user experience framework, developed by your friends at Pilot.

11 lines (6 loc) 300 B
import { DataType } from '../attributeEnums'; import Attribute from '../attribute'; export class AttributeBoolean extends Attribute { constructor(key:string, value:boolean = false, label?:string) { super(key, value, DataType.BOOLEAN, label); } } // End class export default AttributeBoolean;