Rabbit-R1/android (non root)/java/sources/com/airbnb/lottie/network/LottieFetchResult.java

17 lines
338 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package com.airbnb.lottie.network;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
/* loaded from: classes2.dex */
public interface LottieFetchResult extends Closeable {
InputStream bodyByteStream() throws IOException;
String contentType();
String error();
boolean isSuccessful();
}