This commit is contained in:
Sebastian Seedorf
2020-11-16 12:44:08 +01:00
parent 258be989ba
commit 7ad9cd1904
24 changed files with 678 additions and 0 deletions

9
out/redis.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
import * as redis from 'redis';
interface RedisType {
client: redis.RedisClient | undefined;
get(key: string): Promise<string | undefined>;
set(key: string, value: string): Promise<void>;
del(...keys: string[]): Promise<number>;
}
export declare const Redis: RedisType;
export {};