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

12 lines
345 B
Java
Raw Permalink Normal View History

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