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

elemental2.dom.RTCPeerConnectionIceErrorEvent Maven / Gradle / Ivy

The newest version!
package elemental2.dom;
import elemental2.dom.Event;
import java.lang.Object;
import java.lang.String;
import jsinterop.annotations.JsType;
import jsinterop.annotations.JsPackage;
import elemental2.dom.EventInit;
import elemental2.core.JsObject;
@JsType(isNative = true,namespace = JsPackage.GLOBAL)
public class RTCPeerConnectionIceErrorEvent extends Event{
public String address;
public double errorCode;
public String errorText;
public double port;
public String url;
public RTCPeerConnectionIceErrorEvent(String type,JsObject eventInitDict){
// This super call is here only for the code to compile; it is never executed.
super((String)null,(EventInit)null);
}
public RTCPeerConnectionIceErrorEvent(String type,Object eventInitDict){
// This super call is here only for the code to compile; it is never executed.
super((String)null,(EventInit)null);
}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy