W3cubDocs

/Deno

Deno.MXRecord

If resolveDns is called with "MX" record type specified, it will return an array of this interface.

interface MXRecord {
exchange: string;
preference: number;
}

Properties

exchange: string
preference: number

© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/Deno.MXRecord