fix(build): enable noImplicitAny and add explicit typing for cache entry deletion
This commit is contained in:
@@ -104,7 +104,7 @@ export class LevelCache extends AbstractCache {
|
||||
]);
|
||||
}
|
||||
|
||||
public async deleteCacheEntryByKey(keyArg) {
|
||||
public async deleteCacheEntryByKey(keyArg: string): Promise<void> {
|
||||
await Promise.all([
|
||||
this.cacheMemoryManager.deleteCacheEntryByKey(keyArg),
|
||||
this.cacheDiskManager.deleteCacheEntryByKey(keyArg),
|
||||
|
||||
Reference in New Issue
Block a user