Deno.SRVRecord
If Deno.resolveDns
is called with "SRV"
record type
specified, it will return an array of objects with this interface.
interface SRVRecord {
port: number;
priority: number;
target: string;
weight: number;
}If Deno.resolveDns
is called with "SRV"
record type
specified, it will return an array of objects with this interface.