*Change getResolvers to a getter to match the real api

This commit is contained in:
Derrick Hammer 2023-02-19 20:21:41 -05:00
parent 10e01f44fa
commit f6a7322347
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ export class DnsClient extends Client {
public async clear(): Promise<void> {
return this.callModuleReturn("clear");
}
public async getResolvers(): Promise<string[]> {
get resolvers(): Promise<string[]> {
return this.callModuleReturn("getResolvers");
}
public async ready(): Promise<void> {