10 lines
281 B
Java
10 lines
281 B
Java
package com.google.firebase.encoders;
|
|
|
|
import java.io.IOException;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
/* loaded from: classes3.dex */
|
|
public interface Encoder<TValue, TContext> {
|
|
void encode(TValue tvalue, TContext tcontext) throws IOException;
|
|
}
|