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.
10 lines (9 loc) • 505 B
TypeScript
import AxiosClient from './AxiosClient.js';
import { URLForwarding } from './types/index.js';
export default class NameComURLForwardings extends AxiosClient {
listURLForwardings(request: URLForwarding, perPage?: number, page?: number): Promise<any>;
getURLForwarding(request: URLForwarding): Promise<any>;
createURLForwarding(request: URLForwarding): Promise<any>;
updateURLForwarding(request: URLForwarding): Promise<any>;
deleteURLForwarding(request: URLForwarding): Promise<any>;
}