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

io.scalajs.dom.DOMError.scala Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
package io.scalajs.dom

import scala.scalajs.js
import scala.scalajs.js.annotation.JSGlobal

/**
  * The DOMError interface describes an error object that contains an error name.
  * @see [[https://developer.mozilla.org/en-US/docs/Web/API/DOMError]]
  * @author [email protected]
  */
@js.native
@JSGlobal("DOMError")
class DOMError extends js.Object {

  /**
    * Returns a DOMString representing one of the error type names (see below).
    */
  def name: String = js.native

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy