deno / 1.23.2 / ~ / deno.srvrecord.html /

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
priority : number
target : string
weight : number

© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/Deno.SRVRecord