All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.dom.svg.SVGAnimatedLength Maven / Gradle / Ivy

package js.web.dom.svg;

import js.lang.Any;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;

/**
 * Used for attributes of basic type <length> which can be animated.
 */
public interface SVGAnimatedLength extends Any {
    @JSBody(script = "return SVGAnimatedLength.prototype")
    static SVGAnimatedLength prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSBody(script = "return new SVGAnimatedLength()")
    static SVGAnimatedLength create() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSProperty
    SVGLength getAnimVal();

    @JSProperty
    SVGLength getBaseVal();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy