@foblex/flow-animator
Version:
Animation library for @foblex/flow.
19 lines (18 loc) • 623 B
TypeScript
import { IFAnimationItem } from './i-f-animation-item';
/**
* Interface representing the configuration settings for an animation sequence.
*/
export interface IFAnimationConfiguration {
/**
* A two-dimensional array of animation items, each row representing a sequence of animations to be played in order.
*/
items: IFAnimationItem[][];
/**
* The total duration of the animation sequence in milliseconds.
*/
duration: number;
/**
* A flag indicating whether to remove the overlay after each row of animations is complete.
*/
removeOverlayAfterRowComplete: boolean;
}