• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.airbnb.lottie.model.animatable;
2 
3 import com.airbnb.lottie.animation.keyframe.BaseKeyframeAnimation;
4 import com.airbnb.lottie.value.Keyframe;
5 
6 import java.util.List;
7 
8 public interface AnimatableValue<K, A> {
getKeyframes()9   List<Keyframe<K>> getKeyframes();
isStatic()10   boolean isStatic();
createAnimation()11   BaseKeyframeAnimation<K, A> createAnimation();
12 }
13