Skip to content

Commit 188ea5a

Browse files
committed
fix(KeyvProvider): generic
1 parent 247fcc4 commit 188ea5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/providers/KeyvProvider.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { Provider, ProviderTypes } from '../lib/structures/Provider';
55
export class KeyvProvider extends Provider {
66
uri: string | undefined;
77
client: Keyv | null;
8-
opts: Keyv.Options<any> | undefined;
8+
opts: Keyv.Options | undefined;
99
type: ProviderTypes;
1010

11-
constructor(uri?: string, opts?: Keyv.Options<any>) {
11+
constructor(uri?: string, opts?: Keyv.Options) {
1212
super();
1313

1414
this.uri = uri;

0 commit comments

Comments
 (0)