From f6a73223474ab3266e30fc62324322e15b5d6fd0 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 19 Feb 2023 20:21:41 -0500 Subject: [PATCH] *Change getResolvers to a getter to match the real api --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 2c375e9..9c732b5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,7 +14,7 @@ export class DnsClient extends Client { public async clear(): Promise { return this.callModuleReturn("clear"); } - public async getResolvers(): Promise { + get resolvers(): Promise { return this.callModuleReturn("getResolvers"); } public async ready(): Promise {