Deno.MXRecord
If Deno.resolveDns
is called with "MX"
record type
specified, it will return an array of objects with this interface.
interface MXRecord {
exchange: string;
preference: number;
}If Deno.resolveDns
is called with "MX"
record type
specified, it will return an array of objects with this interface.