This commit is contained in:
Sebastian Seedorf
2020-11-16 12:40:47 +01:00
parent 2629d1e8e9
commit 8d35ced40f
36 changed files with 134 additions and 721 deletions

9
out/redis.d.ts vendored
View File

@@ -1,9 +0,0 @@
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 {};