js.web.dom.svg.SVGFEImageElement Maven / Gradle / Ivy
package js.web.dom.svg;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;
/**
* Corresponds to the <feImage> element.
*/
public interface SVGFEImageElement extends SVGElement, SVGFilterPrimitiveStandardAttributes, SVGURIReference {
@JSBody(script = "return SVGFEImageElement.prototype")
static SVGFEImageElement prototype() {
throw new UnsupportedOperationException("Available only in JavaScript");
}
@JSBody(script = "return new SVGFEImageElement()")
static SVGFEImageElement create() {
throw new UnsupportedOperationException("Available only in JavaScript");
}
@JSProperty
SVGAnimatedPreserveAspectRatio getPreserveAspectRatio();
}