NetMirror.apk

Download file
package com.facebook.react.bridge;

/* JADX INFO: loaded from: classes.dex */
public interface Dynamic {
    ReadableArray asArray();

    boolean asBoolean();

    double asDouble();

    int asInt();

    ReadableMap asMap();

    String asString();

    ReadableType getType();

    boolean isNull();

    void recycle();
}
Download file