Rabbit-R1/switch port/java/sources/com/airbnb/lottie/model/KeyPathElement.java
2024-05-21 17:08:36 -04:00

11 lines
346 B
Java

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);
}