Helia
    Preparing search index...

    Interface ResolveDNSLinkOptions

    interface ResolveDNSLinkOptions {
        maxRecursiveDepth?: number;
        nocache?: boolean;
        offline?: boolean;
        onProgress?: (evt: ResolveDNSLinkProgressEvents) => void;
        signal?: AbortSignal;
    }

    Hierarchy

    Index

    Properties

    maxRecursiveDepth?: number

    When resolving DNSLink records that resolve to other DNSLink records, limit how many times we will recursively resolve them.

    32
    
    nocache?: boolean

    Do not use cached DNS entries

    false
    
    offline?: boolean

    Do not query the network for the IPNS record

    false
    
    onProgress?: (evt: ResolveDNSLinkProgressEvents) => void
    signal?: AbortSignal