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

js.web.dom.HTMLDetailsElement Maven / Gradle / Ivy

package js.web.dom;

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


public interface HTMLDetailsElement extends HTMLElement {
    @JSBody(script = "return HTMLDetailsElement.prototype")
    static HTMLDetailsElement prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

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

    @JSProperty
    boolean isOpen();

    @JSProperty
    void setOpen(boolean open);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy