UNPKG

@pilotlab/lux-attributes

Version:

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

11 lines (6 loc) 305 B
import { DataType } from '../attributeEnums'; import Attribute from '../attribute'; export class AttributeArray<TValue> extends Attribute { constructor(key:string, value:Array<TValue> = [], label?:string) { super(key, value, DataType.ARRAY, label); } } // End class export default AttributeArray;