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

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

package js.web.dom.svg;

import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;

/**
 * Corresponds to the <stop> element.
 */
public interface SVGStopElement extends SVGElement {
    @JSBody(script = "return SVGStopElement.prototype")
    static SVGStopElement prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

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

    @JSProperty
    SVGAnimatedNumber getOffset();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy