@pilotlab/data
Version:
A luxurious user experience framework, developed by your friends at Pilot.
8 lines (7 loc) • 354 B
TypeScript
import AttributeNumberBase from './attributeNumberBase';
import AttributeCreateOptions from '../attributeCreateOptions';
export declare class AttributeDouble extends AttributeNumberBase {
constructor(value?: number, label?: string, key?: string);
static create(options: AttributeCreateOptions): AttributeDouble;
}
export default AttributeDouble;