diff options
Diffstat (limited to 'server/lib/redis.ts')
-rw-r--r-- | server/lib/redis.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/lib/redis.ts b/server/lib/redis.ts index bbe94fe40..c4c1fa443 100644 --- a/server/lib/redis.ts +++ b/server/lib/redis.ts | |||
@@ -1,4 +1,4 @@ | |||
1 | import { createClient, RedisClientOptions, RedisModules } from 'redis' | 1 | import { createClient, RedisClientOptions, RedisModules, RedisScripts } from 'redis' |
2 | import { exists } from '@server/helpers/custom-validators/misc' | 2 | import { exists } from '@server/helpers/custom-validators/misc' |
3 | import { sha256 } from '@shared/extra-utils' | 3 | import { sha256 } from '@shared/extra-utils' |
4 | import { logger } from '../helpers/logger' | 4 | import { logger } from '../helpers/logger' |
@@ -18,7 +18,7 @@ import { | |||
18 | 18 | ||
19 | // Only used for typings | 19 | // Only used for typings |
20 | // TODO: remove when https://github.com/microsoft/TypeScript/issues/37181 is fixed | 20 | // TODO: remove when https://github.com/microsoft/TypeScript/issues/37181 is fixed |
21 | const redisClientWrapperForType = () => createClient<{}>() | 21 | const redisClientWrapperForType = () => createClient<{}, RedisScripts>() |
22 | 22 | ||
23 | class Redis { | 23 | class Redis { |
24 | 24 | ||