Rabbit-R1/switch port/java/sources/com/airbnb/lottie/model/KeyPathElement.java

12 lines
346 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package com.airbnb.lottie.model;
import com.airbnb.lottie.value.LottieValueCallback;
import java.util.List;
/* loaded from: classes2.dex */
public interface KeyPathElement {
<T> void addValueCallback(T t, LottieValueCallback<T> lottieValueCallback);
void resolveKeyPath(KeyPath keyPath, int i, List<KeyPath> list, KeyPath keyPath2);
}