mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
16 lines
338 B
Java
16 lines
338 B
Java
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();
|
|
}
|