what-the-bank/sources/o/IVj.java

23 lines
390 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import android.webkit.JavascriptInterface;
/* loaded from: classes3.dex */
public final class IVj {
private Sts d;
/* loaded from: classes3.dex */
public interface Sts {
void a(String str);
}
public IVj(Sts sts) {
this.d = sts;
}
@JavascriptInterface
public final void postMessage(String str) {
this.d.a(str);
}
}