All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.unknown.ServiceUIFrameContext Maven / Gradle / Ivy

package js.web.unknown;

import js.lang.Any;
import org.teavm.jso.JSBody;


public abstract class ServiceUIFrameContext implements Any {
    @JSBody(params = "key", script = "return ServiceUIFrameContext.getCachedFrameMessage(key)")
    public native String getCachedFrameMessage(String key);

    @JSBody(params = {"key", "data"}, script = "ServiceUIFrameContext.postFrameMessage(key, data)")
    public native void postFrameMessage(String key, String data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy