UNPKG

@pilotlab/lux-attributes

Version:

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

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