9 lines
216 B
Java
9 lines
216 B
Java
|
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;
|
||
|
}
|