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

io.scalajs.nodejs.dns.MX.scala Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
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 }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy