Interface IPhase

interface IPhase {
    delay: number;
    apply(
        item: Readonly<IAnimationItem>,
        previousFinder: KeyFinder,
        currentFinder: KeyFinder,
    ): void;
}

Properties

Methods

Properties

delay: number

Methods