UNPKG

@pilotlab/lux-attributes

Version:

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

11 lines (10 loc) 465 B
import { IAnimationBatch } from '@pilotlab/lux-animation'; import IAttribute from './interfaces/iAttribute'; import { IAttributeSetReturn } from "./interfaces/iAttributeSetReturn"; export declare class AttributeSetReturn<TAttribute extends IAttribute> implements IAttributeSetReturn { constructor(attribute: TAttribute, isChanged: boolean); attribute: TAttribute; isChanged: boolean; animation: IAnimationBatch; } export default AttributeSetReturn;