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

Deno.SRVRecord

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

interface SRVRecord {
port: number;
priority: number;
target: string;
weight: number;
}

§Properties

§
port: number
[src]
§
priority: number
[src]
§
target: string
[src]
§
weight: number
[src]