*Fix return type
This commit is contained in:
parent
69638955f1
commit
5838b30141
|
@ -9,7 +9,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> {
|
public async getResolvers(): 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