Skip to content

Commit

Permalink
fix: remove protected keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoomen committed May 21, 2021
1 parent eda46e3 commit 6ce0e81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/throttler-storage-redis.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { ThrottlerStorageRedis } from './throttler-storage-redis.interface';

@Injectable()
export class ThrottlerStorageRedisService implements ThrottlerStorageRedis {
protected redis: Redis.Redis;
protected scanCount: number;
redis: Redis.Redis;
scanCount: number;

constructor(redis?: Redis.Redis, scanCount?: number);
constructor(options?: Redis.RedisOptions, scanCount?: number);
Expand Down

0 comments on commit 6ce0e81

Please sign in to comment.