A helper function to parse args passed as JSONValue[]
bindJs
void myFunction(JSONValue[] arg) { with(WebView.parseJsArgs!(int, "hello", string, "world")(args)) { // Just like we have named args writeln(hello); writeln(world); } }
See Implementation
A helper function to parse args passed as JSONValue[]