Web API package for use when compling Go to WASM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

28 lines
608 B

// Code generated DO NOT EDIT
// radionodelist.go
package dom
import "syscall/js"
type RadioNodeListIFace interface {
Item(args ...interface{}) Node
GetLength() float64
GetValue() string
SetValue(string)
}
type RadioNodeList struct {
Value
NodeList
}
func jsValueToRadioNodeList(val js.Value) RadioNodeList {
return RadioNodeList{Value: Value{Value: val}}
}
func (v Value) AsRadioNodeList() RadioNodeList { return RadioNodeList{Value: v} }
func (r RadioNodeList) GetValue() string {
val := r.Get("value")
return val.String()
}
func (r RadioNodeList) SetValue(val string) {
r.Set("value", val)
}