@multiformats/dns
    Preparing search index...

    Interface Answer

    interface Answer {
        data: string;
        name: string;
        TTL: number;
        type: RecordType;
    }
    Index

    Properties

    Properties

    data: string

    The value of the DNS record for the given name and type. The data will be in text for standardized record types and in hex for unknown types.

    name: string

    The record owner.

    TTL: number

    The number of seconds the answer can be stored in cache before it is considered stale.

    The type of DNS record.