Deno.NAPTRRecord
If Deno.resolveDns
is called with "NAPTR"
record type
specified, it will return an array of objects with this interface.
interface NAPTRRecord {
flags: string;
order: number;
preference: number;
regexp: string;
replacement: string;
services: string;
}