n8n-nodes-base
Version:
Base nodes of n8n
12 lines • 329 B
TypeScript
import type { createClient } from 'redis';
export type RedisClient = ReturnType<typeof createClient>;
export type RedisCredential = {
host: string;
port: number;
ssl?: boolean;
disableTlsVerification?: boolean;
database: number;
user?: string;
password?: string;
};
//# sourceMappingURL=types.d.ts.map