Skip to content

Commit

Permalink
fix(qs): ignore storage param
Browse files Browse the repository at this point in the history
  • Loading branch information
francoischalifour committed Nov 10, 2020
1 parent b12cc26 commit 5279dba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export type CreateRecentSearchesLocalStorageOptions<

type LocalStorageRecentSearchesPluginOptions<
TItem extends RecentSearchesItem
> = CreateRecentSearchesPluginParams<TItem> &
> = Pick<CreateRecentSearchesPluginParams<TItem>, 'getTemplates'> &
CreateRecentSearchesLocalStorageOptions<TItem>;

export function createLocalStorageRecentSearchesPlugin<
Expand Down

0 comments on commit 5279dba

Please sign in to comment.