Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
}

§Properties

§
flags: string
[src]
§
order: number
[src]
§
preference: number
[src]
§
regexp: string
[src]
§
replacement: string
[src]
§
services: string
[src]