@pilotlab/lux-attributes
Version:
A luxurious user experience framework, developed by your friends at Pilot.
9 lines (8 loc) • 465 B
TypeScript
import { Attribute, IAttributeUpdateTracker } from '@pilotlab/lux-attributes';
import { IAnimationEaseFunction, ISpeed } from '@pilotlab/lux-animation';
export declare class AttributeInt extends Attribute {
constructor(key: string, value?: number, label?: string);
readonly value: number;
go(target: number, durationSpeed?: (number | ISpeed), ease?: IAnimationEaseFunction, repeatCount?: number): IAttributeUpdateTracker;
}
export default AttributeInt;