UNPKG
appolo-dns-cache
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
cache node dns module
github.com/shmoop207/appolo-dns-cache
shmoop207/appolo-dns-cache
appolo-dns-cache
/
index.ts
9 lines
(6 loc)
•
193 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{
DnsCache
}
from
"./lib/dnsCache"
import
{
IOptions
}
from
"./lib/IOptions"
;
export
{
DnsCache
}
export
function
dnsCache
(
options?: IOptions
):
DnsCache
{
return
new
DnsCache
(options) }