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

11 lines
260 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 ValueEncoderContext {
ValueEncoderContext add(String str) throws IOException;
ValueEncoderContext add(boolean z) throws IOException;
}