UNPKG

@foblex/flow-animator

Version:
14 lines (13 loc) 340 B
/** * Interface representing an element to be animated, with its associated properties. */ export interface IFElementToAnimate { /** * The DOM element to be animated. */ element: HTMLElement | SVGPathElement; /** * The duration of the animation for this element in milliseconds. */ duration: number; }