Skip to content

Commit

Permalink
fix: added correct type for menu item
Browse files Browse the repository at this point in the history
  • Loading branch information
peconomou929 committed Apr 27, 2024
1 parent 795f820 commit 68cb21c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -34421,7 +34421,7 @@
"name": "item",
"optional": false,
"readonly": false,
"type": "any",
"type": "MenuItem",
"description": "Current menuitem"
},
{
Expand Down
2 changes: 1 addition & 1 deletion components/lib/menu/menu.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export interface MenuContext {
/**
* Current menuitem
*/
item: any;
item: MenuItem;
/**
* Index of the menuitem
*/
Expand Down

0 comments on commit 68cb21c

Please sign in to comment.