what-the-bank/sources/com/airbnb/lottie/network/LottieFetchResult.java

17 lines
337 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package com.airbnb.lottie.network;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
/* loaded from: classes.dex */
public interface LottieFetchResult extends Closeable {
InputStream bodyByteStream() throws IOException;
String contentType();
String error();
boolean isSuccessful();
}