Skip to content

Commit

Permalink
Fix type for tray options' menuItems property (#79)
Browse files Browse the repository at this point in the history
* Fix type for tray options' menuItems property

* Menu icon and items required in tray options
  • Loading branch information
jouni-kantola authored Aug 4, 2023
1 parent 8998d7b commit 05f279c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/os.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export interface Filter {
}

export interface TrayOptions {
icon?: string;
menu?: TrayMenuItem[];
icon: string;
menuItems: TrayMenuItem[];
}

export interface TrayMenuItem {
Expand Down

0 comments on commit 05f279c

Please sign in to comment.