| 14 | export type DnsType = DNSOverHTTPS | DNSOverIpAddress |
| 15 | |
| 16 | export interface IDnsMap { |
| 17 | [key: string]: DnsType |
| 18 | } |
| 19 | |
| 20 | export function initDNS(dnsProviders: IDnsOption) { |
| 21 | const dnsMap: IDnsMap = {}; |
nothing calls this directly
no outgoing calls
no test coverage detected