Skip to content

Commit

Permalink
chore(docs): update menu docs with new type
Browse files Browse the repository at this point in the history
  • Loading branch information
DRiFTy17 committed Nov 9, 2023
1 parent cf98bab commit 863cef7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stories/src/components/menu/menu.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ type MenuOptionBuilder = (option: IMenuOption, parentElement: HTMLElement) => HT
### MenuOptionFactory

```typescript
type MenuOptionFactory = (() => IMenuOption[]) | (() => Promise<IMenuOption[]>);
type MenuOptionFactory = (() => Array<IMenuOption | IMenuOptionGroup>) | (() => Promise<Array<IMenuOption | IMenuOptionGroup>>);
```

### MenuMode
Expand Down

0 comments on commit 863cef7

Please sign in to comment.