edgeport - v1.0.6
    Preparing search index...

    Interface QuestionInput

    One question for a raw DnsSession.query.

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

    The CLASS; defaults to RecordClass.IN.

    name: string

    The domain name to ask about.

    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 (name or number).