*Fix return type

This commit is contained in:
Derrick Hammer 2023-02-19 16:35:19 -05:00
parent 69638955f1
commit 5838b30141
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

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