W3cubDocs

/Deno

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–2021 the Deno authors
https://doc.deno.land/deno/stable/~/Deno.SRVRecord