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

js.web.webrtc.RTCIceGatherOptions Maven / Gradle / Ivy

package js.web.webrtc;

import js.lang.Any;
import js.util.collections.Array;
import org.teavm.jso.JSByRef;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface RTCIceGatherOptions extends Any {
    @JSProperty
    @Nullable
    RTCIceGatherPolicy getGatherPolicy();

    @JSProperty
    void setGatherPolicy(RTCIceGatherPolicy gatherPolicy);

    @JSProperty
    @Nullable
    Array getIceservers();

    @JSProperty
    void setIceservers(RTCIceServer... iceservers);

    @JSProperty
    void setIceservers(Array iceservers);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy