We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b834648 commit 7f3b87aCopy full SHA for 7f3b87a
dist/models/options.d.ts
@@ -5,10 +5,10 @@ export interface Options {
5
}
6
export interface RedisOptions extends Options {
7
host: string;
8
- db: string;
+ db: number;
9
port: number;
10
keyPrefix?: string;
11
- lazyConnect?: string;
+ lazyConnect?: boolean;
12
maxRetriesPerRequest?: number;
13
family?: string;
14
path?: string;
src/models/options.ts
@@ -2,7 +2,7 @@ import { ProviderName } from './provider';
2
3
export interface Options {
4
provider: ProviderName;
- ttl: number | string;
+ ttl?: number | string;
0 commit comments