js.web.dom.svg.SVGAnimatedString Maven / Gradle / Ivy
package js.web.dom.svg;
import js.lang.Any;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;
/**
* The SVGAnimatedString interface represents string attributes which can be animated from each SVG declaration. You need to create SVG attribute before doing anything else, everything should be declared inside this.
*/
public interface SVGAnimatedString extends Any {
@JSBody(script = "return SVGAnimatedString.prototype")
static SVGAnimatedString prototype() {
throw new UnsupportedOperationException("Available only in JavaScript");
}
@JSBody(script = "return new SVGAnimatedString()")
static SVGAnimatedString create() {
throw new UnsupportedOperationException("Available only in JavaScript");
}
@JSProperty
String getAnimVal();
@JSProperty
String getBaseVal();
@JSProperty
void setBaseVal(String baseVal);
}