js.web.dom.RadioNodeList Maven / Gradle / Ivy
package js.web.dom;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;
public interface RadioNodeList extends NodeList {
@JSBody(script = "return RadioNodeList.prototype")
static RadioNodeList prototype() {
throw new UnsupportedOperationException("Available only in JavaScript");
}
@JSBody(script = "return new RadioNodeList()")
static RadioNodeList create() {
throw new UnsupportedOperationException("Available only in JavaScript");
}
@JSProperty
String getValue();
@JSProperty
void setValue(String value);
}