fix(core): update

This commit is contained in:
2023-04-03 14:41:09 +02:00
parent 66ed64548a
commit 5b75506634
3 changed files with 20 additions and 1 deletions

12
ts/data/domainsnapshot.ts Normal file
View File

@@ -0,0 +1,12 @@
import * as plugins from '../ul-interfaces.plugins.js';
export interface IDomainSnapshot {
nameservers: string[];
aRecords: plugins.tsclass.network.IDnsRecord[];
aaaaRecords: plugins.tsclass.network.IDnsRecord[];
txtRecords: plugins.tsclass.network.IDnsRecord[];
whoisServers: {
serverUrl: string;
content: string;
}[];
}