@pilotlab/lux-attributes
Version:
A luxurious user experience framework, developed by your friends at Pilot.
11 lines (6 loc) • 300 B
text/typescript
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;