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

js.web.streams.ReadableStreamReadResult Maven / Gradle / Ivy

package js.web.streams;

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


public interface ReadableStreamReadResult extends Any {
    @JSProperty
    boolean isDone();

    @JSProperty
    void setDone(boolean done);

    @JSProperty
    T getValue();

    @JSProperty
    void setValue(T value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy