From 9d95bb59e3ff7de8d0e87e477732f4b063c10880 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 18 Aug 2022 11:13:49 -0400 Subject: [PATCH] *Make type a string --- src/types.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/types.ts b/src/types.ts index 1be1dd7..de5d011 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,5 +1,5 @@ export interface ResolverOptions { - type: any; + type: string; customType?: string; options?: any; } @@ -14,7 +14,6 @@ export interface DNSRecord { customType?: string; value: string; } - const DNS_RECORD_TYPE = { DEFAULT: "DEFAULT", A: "A",