Skip to content

Commit

Permalink
fix(menu): missing output events in interface
Browse files Browse the repository at this point in the history
fixes #11383
  • Loading branch information
manucorporat committed Apr 27, 2017
1 parent 239b559 commit 7eb2f0b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/components/app/menu-interface.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { EventEmitter } from '@angular/core';
import { Animation } from '../../animations/animation';
import { Side } from '../../util/util';

export interface Menu {

setOpen(shouldOpen: boolean, animated: boolean): Promise<boolean>;
open(): Promise<boolean>;
close(): Promise<boolean>;
Expand All @@ -13,6 +15,11 @@ export interface Menu {
side: Side;
id: string;
isRightSide: boolean;

ionDrag: EventEmitter<number>;
ionOpen: EventEmitter<boolean>;
ionClose: EventEmitter<boolean>;

isAnimating(): boolean;
width(): number;
getContentElement(): HTMLElement;
Expand Down

0 comments on commit 7eb2f0b

Please sign in to comment.