io.scalajs.dom.ws.ErrorEvent.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dom-html_sjs0.6_2.11 Show documentation
Show all versions of dom-html_sjs0.6_2.11 Show documentation
DOM/HTML bindings for Scala.js
package io.scalajs.dom.ws
import io.scalajs.dom.Event
import scala.scalajs.js
import scala.scalajs.js.annotation.JSGlobal
/**
* A MessageEvent is the interface representing a message received by a target,
* being a WebSocket or a WebRTC RTCDataChannel.
*/
@js.native
@JSGlobal("ErrorEvent")
class ErrorEvent() extends Event {
def message: String = js.native
}