import jsinterop.annotations.JsMethod;
import jsinterop.annotations.JsType;
@JsType(namespace = "myApp")
public class HelloWorld {
@JsMethod
public static void sayHello(String name) {
System.out.println("Hello, " + name + "!");
}
}
script
myApp.HelloWorld.sayHello("John");
<inherits name="jsinterop.annotations.JsInterop"/>
<compiler options="-generateJsInteropExports"/>