@relicx_/kernel 1.1.45 → 1.1.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -189,6 +189,7 @@ interface IRedisInterface {
|
|
|
189
189
|
}
|
|
190
190
|
declare class RedisConnection extends DBConnection implements IRedisInterface {
|
|
191
191
|
private m_conn;
|
|
192
|
+
private m_clustermode;
|
|
192
193
|
constructor(cfg: any);
|
|
193
194
|
Get(key: string): Promise<string>;
|
|
194
195
|
Set(key: string, value: string, ttl?: number): Promise<boolean>;
|