*Fix return type

This commit is contained in:
Derrick Hammer 2022-11-23 21:22:42 -05:00
parent 9bc97fa195
commit 4f93d23b68
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ export default class DHTCache extends EventEmitter {
private _cache: Set<string>; private _cache: Set<string>;
public get cache(): {} { public get cache(): string[] {
return [...this._cache].sort(); return [...this._cache].sort();
} }