edgeport - v1.0.6
    Preparing search index...

    Interface QueryOptions

    Per-query options for DnsSession.query and the typed one-shots.

    1.0.4

    interface QueryOptions {
        dnssec?: boolean;
        timeoutMs?: number;
        type?:
            | number
            | "A"
            | "NS"
            | "CNAME"
            | "SOA"
            | "PTR"
            | "MX"
            | "TXT"
            | "AAAA"
            | "SRV"
            | "NAPTR"
            | "OPT"
            | "DS"
            | "SSHFP"
            | "RRSIG"
            | "NSEC"
            | "DNSKEY"
            | "TLSA"
            | "SVCB"
            | "HTTPS"
            | "CAA"
            | "ANY";
    }
    Index
    dnssec?: boolean

    Set the EDNS0 DO bit to request DNSSEC records (adds an OPT record).

    timeoutMs?: number

    Override the session read deadline for this query, in milliseconds.

    type?:
        | number
        | "A"
        | "NS"
        | "CNAME"
        | "SOA"
        | "PTR"
        | "MX"
        | "TXT"
        | "AAAA"
        | "SRV"
        | "NAPTR"
        | "OPT"
        | "DS"
        | "SSHFP"
        | "RRSIG"
        | "NSEC"
        | "DNSKEY"
        | "TLSA"
        | "SVCB"
        | "HTTPS"
        | "CAA"
        | "ANY"

    The record TYPE to ask for; defaults to A.