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);
}