@pilotlab/data
Version:
A luxurious user experience framework, developed by your friends at Pilot.
11 lines (10 loc) • 363 B
TypeScript
import { IAnimationBatch } from '@pilotlab/animation';
import IAttribute from './iAttribute';
import IAttributeUpdateTracker from './iAttributeUpdateTracker';
export interface IAttributeSetReturn {
attribute: IAttribute;
isChanged: boolean;
animation: IAnimationBatch;
updateTracker: IAttributeUpdateTracker;
}
export default IAttributeSetReturn;