UNPKG

namecomv4

Version:

A Node.js library wrapper for Name.com's V4 API, designed to simplify domain management tasks such as querying domain information, managing DNS records, and handling domain registration and transfer.

7 lines (6 loc) 234 B
import AxiosClient from './AxiosClient.js'; declare class NameComOrders extends AxiosClient { listOrders(perPage?: number, page?: number): Promise<any>; getOrder(orderId: number): Promise<any>; } export default NameComOrders;