io.scalajs.nodejs.dns.MX.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nodejs_sjs0.6_2.11 Show documentation
Show all versions of nodejs_sjs0.6_2.11 Show documentation
NodeJS bindings for Scala.js
package io.scalajs.nodejs.dns
import scala.scalajs.js
/**
* Represents an MX record.
*
* {
* exchange: 'bing-com.mail.protection.outlook.com',
* priority: 10
* }
*
* @author [email protected]
*/
@js.native
trait MX extends js.Object {
var exchange: String = js.native
var priority: Integer = js.native
}