UNPKG

node-rdap

Version:

Node RDAP client for Whois lookup in Node JS.

6 lines (5 loc) 396 B
import type { RdapAutnumResponse, RdapDomainResponse, RdapIpResponse } from "./types.js"; export { RdapAutnumResponse, RdapDomainResponse, RdapIpResponse, } from "./types.js"; export declare const domain: (fqdn: string) => Promise<RdapDomainResponse>; export declare const ip: (ip: string) => Promise<RdapIpResponse>; export declare const autnum: (autnum: number) => Promise<RdapAutnumResponse>;