*Change getResolvers to a getter to match the real api
This commit is contained in:
parent
10e01f44fa
commit
f6a7322347
|
@ -14,7 +14,7 @@ export class DnsClient extends Client {
|
||||||
public async clear(): Promise<void> {
|
public async clear(): Promise<void> {
|
||||||
return this.callModuleReturn("clear");
|
return this.callModuleReturn("clear");
|
||||||
}
|
}
|
||||||
public async getResolvers(): Promise<string[]> {
|
get resolvers(): Promise<string[]> {
|
||||||
return this.callModuleReturn("getResolvers");
|
return this.callModuleReturn("getResolvers");
|
||||||
}
|
}
|
||||||
public async ready(): Promise<void> {
|
public async ready(): Promise<void> {
|
||||||
|
|
Loading…
Reference in New Issue