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