fixed some lint issues

This commit is contained in:
Boki 2025-06-26 16:11:58 -04:00
parent 8680b6ec20
commit a700818a06
15 changed files with 1574 additions and 1319 deletions

View file

@ -7,7 +7,7 @@ interface ConnectionConfig {
singleton?: boolean;
db?: number;
redisConfig: RedisConfig;
logger?: any;
logger?: unknown;
}
/**
@ -32,7 +32,9 @@ export class RedisConnectionManager {
if (singleton) {
const existing = RedisConnectionManager.connections.get(name);
if (existing) return existing;
if (existing) {
return existing;
}
}
const connection = this.createConnection(redisConfig);