Skip to content

Commit

Permalink
Fix onActive params type
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts committed Feb 5, 2021
1 parent 029b991 commit 78f8d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/autocomplete-core/src/types/AutocompleteSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export interface AutocompleteSource<TItem extends BaseItem> {
* An item is highlighted either via keyboard navigation or via mouse over.
* You can trigger different behaviors based on the event `type`.
*/
onActive?(params: OnHighlightParams<TItem>): void;
onActive?(params: OnActiveParams<TItem>): void;
/**
* Identifier for the source.
*/
Expand Down

0 comments on commit 78f8d84

Please sign in to comment.