UNPKG

@pilotlab/lux-attributes

Version:

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

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