30 lines
457 B
TypeScript
30 lines
457 B
TypeScript
export interface ResolverOptions {
|
|
type: string;
|
|
customType?: string;
|
|
options?: any;
|
|
}
|
|
|
|
export interface DNSResult {
|
|
records: DNSRecord[];
|
|
error?: Error;
|
|
}
|
|
|
|
export interface DNSRecord {
|
|
type: string;
|
|
customType?: string;
|
|
value: string;
|
|
}
|
|
const DNS_RECORD_TYPE = {
|
|
A: "A",
|
|
CNAME: "CNAME",
|
|
NS: "NS",
|
|
CONTENT: "CONTENT",
|
|
TEXT: "TEXT",
|
|
ALL: "ALL",
|
|
CUSTOM: "CUSTOM",
|
|
};
|
|
|
|
Object.freeze(DNS_RECORD_TYPE);
|
|
|
|
export { DNS_RECORD_TYPE };
|