12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
|
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;
|
||
|
}[];
|
||
|
}
|