@pilotlab/lux-attributes
Version:
A luxurious user experience framework, developed by your friends at Pilot.
12 lines (11 loc) • 520 B
TypeScript
import { DataType } from './attributeEnums';
import Attributes from './attributes';
import AttributeBase from './attributeBase';
import IAttributeFactory from './interfaces/iAttributeFactory';
import AttributeRoot from './attributeRoot';
export declare class Attribute extends AttributeBase<any, Attribute, Attributes, AttributeRoot> {
constructor(key: string, value?: any, dataType?: DataType, label?: string);
static readonly create: IAttributeFactory;
private static _factory;
}
export default Attribute;