@keyv/etcd 1.1.1 → 1.1.2
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/package.json +3 -3
- package/src/index.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keyv/etcd",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Etcd storage adapter for Keyv",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -70,9 +70,9 @@
|
|
|
70
70
|
"this": "^1.1.0",
|
|
71
71
|
"ts-node": "^10.9.1",
|
|
72
72
|
"tsd": "^0.24.1",
|
|
73
|
-
"typescript": "^4.8.
|
|
73
|
+
"typescript": "^4.8.4",
|
|
74
74
|
"webpack": "^5.74.0",
|
|
75
|
-
"xo": "^0.52.
|
|
75
|
+
"xo": "^0.52.4"
|
|
76
76
|
},
|
|
77
77
|
"tsd": {
|
|
78
78
|
"directory": "test"
|
package/src/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import {EventEmitter} from 'events';
|
|
|
2
2
|
import type Etcd3 from 'etcd3';
|
|
3
3
|
import type {Store, StoredData} from 'keyv';
|
|
4
4
|
|
|
5
|
-
declare class KeyvEtcd extends EventEmitter implements Store<Value> {
|
|
5
|
+
declare class KeyvEtcd<Value=any> extends EventEmitter implements Store<Value> {
|
|
6
6
|
ttlSupport: any;
|
|
7
7
|
opts: any;
|
|
8
8
|
client: Etcd3;
|