cddnss.getRecordDataForDomains
Returns the DNS record data for the given domains.
cddnss.getRecordDataForDomains(['example.com', 'example.net'])
.then((domainRecordList: DomainRecordList) => {
for (const domain in domainRecordList) {
const recordData: Array<RecordData> = domainRecordList[domain];
console.log(recordData);
}
});