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

js.web.dom.svg.SVGAnimatedLengthList 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 type SVGLengthList which can be animated.
 */
public interface SVGAnimatedLengthList extends Any {
    @JSBody(script = "return SVGAnimatedLengthList.prototype")
    static SVGAnimatedLengthList prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

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

    @JSProperty
    SVGLengthList getAnimVal();

    @JSProperty
    SVGLengthList getBaseVal();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy