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

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

package js.web.streams;

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


public interface ReadableStreamDefaultReader extends Any {
    @JSProperty
    VoidPromise getClosed();

    VoidPromise cancel(Any reason);

    VoidPromise cancel();

    Promise> read();

    void releaseLock();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy