Skip to content

Commit

Permalink
fix(KeyvProvider): generic
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyrom committed Apr 4, 2022
1 parent 247fcc4 commit 188ea5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/KeyvProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import { Provider, ProviderTypes } from '../lib/structures/Provider';
export class KeyvProvider extends Provider {
uri: string | undefined;
client: Keyv | null;
opts: Keyv.Options<any> | undefined;
opts: Keyv.Options | undefined;
type: ProviderTypes;

constructor(uri?: string, opts?: Keyv.Options<any>) {
constructor(uri?: string, opts?: Keyv.Options) {
super();

this.uri = uri;
Expand Down

0 comments on commit 188ea5a

Please sign in to comment.