import type { createClient } from 'redis'; export type RedisClient = ReturnType; export type RedisCredential = { host: string; port: number; ssl?: boolean; disableTlsVerification?: boolean; database: number; user?: string; password?: string; }; //# sourceMappingURL=types.d.ts.map