We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e1c8bb commit 2e7bcc2Copy full SHA for 2e7bcc2
packages/etcd/src/index.ts
@@ -1,4 +1,3 @@
1
-/* eslint-disable @typescript-eslint/no-unsafe-argument */
2
import {EventEmitter} from 'events';
3
import type {Lease} from 'etcd3';
4
import {Etcd3} from 'etcd3';
@@ -92,7 +91,7 @@ class KeyvEtcd<Value = any> extends EventEmitter implements Store<Value> {
92
91
data.push(undefined);
93
} else {
94
// @ts-expect-error - value is an object
95
- data.push(value.value);
+ data.push(value.value as StoredData<Value>);
96
}
97
98
0 commit comments