@pilotlab/lux-attributes
Version:
A luxurious user experience framework, developed by your friends at Pilot.
12 lines (7 loc) • 359 B
text/typescript
import { DataType } from '../attributeEnums';
import Attribute from '../attribute';
import IAttributes from '../interfaces/iAttributes';
export class AttributeCollection extends Attribute {
constructor(key:string, value?:IAttributes, label?:string) { super(key, value, DataType.COLLECTION, label); }
} // End class
export default AttributeCollection;