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.

11 lines (10 loc) 590 B
import AxiosClient from './AxiosClient.js'; import { EmailForwarding } from './types/index.js'; declare class NameComEmailForwarding extends AxiosClient { listEmailForwarding(domainName: string): Promise<any>; getEmailForwarding(domainName: string, id: number): Promise<any>; createEmailForwarding(domainName: string, forwarding: EmailForwarding): Promise<any>; updateEmailForwarding(domainName: string, id: number, forwarding: EmailForwarding): Promise<any>; deleteEmailForwarding(domainName: string, id: number): Promise<any>; } export default NameComEmailForwarding;