Interface ResolveDNSLinkOptions

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

Hierarchy

Properties

maxRecursiveDepth?: number

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

Default

32
nocache?: boolean

Do not use cached DNS entries

Default

false
offline?: boolean

Do not query the network for the IPNS record

Default

false
onProgress?: ((evt) => void)

Type declaration

signal?: AbortSignal