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.
 

17 lines
439 B

// Code generated DO NOT EDIT
// imagesmoothingquality.go
package dom
import "syscall/js"
type ImageSmoothingQuality string
const (
ImageSmoothingQualityLow ImageSmoothingQuality = "low"
ImageSmoothingQualityMedium ImageSmoothingQuality = "medium"
ImageSmoothingQualityHigh ImageSmoothingQuality = "high"
)
func JSValueToImageSmoothingQuality(val js.Value) ImageSmoothingQuality {
return ImageSmoothingQuality(val.String())
}