interfaces/ts/data/domainsnapshot.ts

28 lines
691 B
TypeScript
Raw Normal View History

2023-04-03 12:41:09 +00:00
import * as plugins from '../ul-interfaces.plugins.js';
export interface IDomainSnapshot {
2023-04-10 12:09:21 +00:00
registration: {
isRegistered: boolean;
2023-04-17 11:47:58 +00:00
createionDate: Date;
expiryDate: Date;
2023-04-10 12:09:21 +00:00
};
2023-04-10 12:04:13 +00:00
delegation: {
domainWithoutSuffix: string;
publicSuffix: string;
subdomain: string;
isIcann: boolean;
dnsSecEnabled: boolean;
};
phishingFlags: {
listName: string;
}[];
2023-04-03 12:41:09 +00:00
nameservers: string[];
aRecords: plugins.tsclass.network.IDnsRecord[];
aaaaRecords: plugins.tsclass.network.IDnsRecord[];
txtRecords: plugins.tsclass.network.IDnsRecord[];
2023-04-06 16:15:12 +00:00
mxRecords: plugins.tsclass.network.IDnsRecord[];
2023-04-03 12:41:09 +00:00
whoisServers: {
serverUrl: string;
content: string;
}[];
}