UNPKG

@pilotlab/data

Version:

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

15 lines (10 loc) 380 B
import { IAnimationBatch } from '@pilotlab/animation'; import IAttribute from './iAttribute'; import IAttributeUpdateTracker from './iAttributeUpdateTracker'; export interface IAttributeSetReturn { attribute:IAttribute; isChanged:boolean; animation:IAnimationBatch; updateTracker:IAttributeUpdateTracker; } // End interface export default IAttributeSetReturn;