what-the-bank/sources/com/airbnb/lottie/model/animatable/AnimatableValue.java

15 lines
366 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.airbnb.lottie.model.animatable;
import com.airbnb.lottie.animation.keyframe.BaseKeyframeAnimation;
import com.airbnb.lottie.value.Keyframe;
import java.util.List;
/* loaded from: classes.dex */
public interface AnimatableValue<K, A> {
BaseKeyframeAnimation<K, A> createAnimation();
List<Keyframe<K>> getKeyframes();
boolean isStatic();
}