Skip to content

Commit

Permalink
fix(toolbar): added missing TS events definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed May 28, 2021
1 parent 3bc1eb2 commit d0afb69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/components/toolbar/toolbar.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ export namespace Toolbar {
| undefined;
}
interface AppEvents {
/** Event will be triggered when Tab becomes visible/active */
tabShow: (tabEl: HTMLElement) => void;
/** Event will be triggered when Tab becomes hidden/inactive */
tabHide: (tabEl: HTMLElement) => void;
/** Event will be triggered when Toolbar becomes visible */
toolbarShow: (toolbarEl: HTMLElement) => void;
/** Event will be triggered when Toolbar becomes hidden */
toolbarHide: (toolbarEl: HTMLElement) => void;
}
}

Expand Down

0 comments on commit d0afb69

Please sign in to comment.