Skip to content

Commit

Permalink
fix: pass any for keyv types
Browse files Browse the repository at this point in the history
closes #686
  • Loading branch information
Kikobeats committed Feb 9, 2024
1 parent d95df13 commit 711424c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/metascraper-clearbit/src/index.d.ts
Expand Up @@ -6,7 +6,7 @@ type Options = {
/**
* https://github.com/microlinkhq/keyv/tree/master/packages/memoize#keyvoptions
*/
keyvOpts?: import('@keyvhq/core').Options,
keyvOpts?: import('@keyvhq/core').Options<any>,
/**
* https://dashboard.clearbit.com/docs#logo-api
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/metascraper-logo-favicon/src/index.d.ts
Expand Up @@ -23,7 +23,7 @@ type Options = {
/**
* https://github.com/microlinkhq/keyv/tree/master/packages/memoize#keyvoptions
*/
keyvOpts?: import('@keyvhq/core').Options,
keyvOpts?: import('@keyvhq/core').Options<any>,
/**
* The function to pick the favicon from the list of favicons.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/metascraper-manifest/src/index.d.ts
Expand Up @@ -6,7 +6,7 @@ type Options = {
/**
* https://github.com/microlinkhq/keyv/tree/master/packages/memoize#keyvoptions
*/
keyvOpts?: import('@keyvhq/core').Options,
keyvOpts?: import('@keyvhq/core').Options<any>,
}

declare function rules(options?: Options): import('metascraper').Rules;
Expand Down
2 changes: 1 addition & 1 deletion packages/metascraper-spotify/src/index.d.ts
Expand Up @@ -6,7 +6,7 @@ type Options = {
/**
* https://github.com/microlinkhq/keyv/tree/master/packages/memoize#keyvoptions
*/
keyvOpts?: import('@keyvhq/core').Options,
keyvOpts?: import('@keyvhq/core').Options<any>,
}

declare function rules(options?: Options): import('metascraper').Rules;
Expand Down
2 changes: 1 addition & 1 deletion packages/metascraper-telegram/src/index.d.ts
Expand Up @@ -6,7 +6,7 @@ type Options = {
/**
* https://github.com/microlinkhq/keyv/tree/master/packages/memoize#keyvoptions
*/
keyvOpts?: import('@keyvhq/core').Options,
keyvOpts?: import('@keyvhq/core').Options<any>,
}

declare function rules(options?: Options): import('metascraper').Rules;
Expand Down

0 comments on commit 711424c

Please sign in to comment.