what-the-bank/sources/com/google/firebase/encoders/Encoder.java

9 lines
216 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.firebase.encoders;
import java.io.IOException;
/* loaded from: classes.dex */
public interface Encoder<TValue, TContext> {
void encode(TValue tvalue, TContext tcontext) throws IOException;
}