*Make type a string

This commit is contained in:
Derrick Hammer 2022-08-18 11:13:49 -04:00
parent 97e45a098d
commit 9d95bb59e3
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,5 @@
export interface ResolverOptions { export interface ResolverOptions {
type: any; type: string;
customType?: string; customType?: string;
options?: any; options?: any;
} }
@ -14,7 +14,6 @@ export interface DNSRecord {
customType?: string; customType?: string;
value: string; value: string;
} }
const DNS_RECORD_TYPE = { const DNS_RECORD_TYPE = {
DEFAULT: "DEFAULT", DEFAULT: "DEFAULT",
A: "A", A: "A",