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

js.web.webworkers.WorkletOptions Maven / Gradle / Ivy

package js.web.webworkers;

import js.lang.Any;
import js.web.fetch.RequestCredentials;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface WorkletOptions extends Any {
    @JSProperty
    @Nullable
    RequestCredentials getCredentials();

    @JSProperty
    void setCredentials(RequestCredentials credentials);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy