fix(events): fix ionic/angular events

This commit is contained in:
Adam Bradley
2018-03-01 16:32:29 -06:00
parent 9c93df48d8
commit 79eddec369
5 changed files with 211 additions and 55 deletions

View File

@ -853,36 +853,6 @@ declare global {
}
import {
Events as IonEvents
} from './components/events/events';
declare global {
interface HTMLIonEventsElement extends IonEvents, HTMLStencilElement {
}
var HTMLIonEventsElement: {
prototype: HTMLIonEventsElement;
new (): HTMLIonEventsElement;
};
interface HTMLElementTagNameMap {
"ion-events": HTMLIonEventsElement;
}
interface ElementTagNameMap {
"ion-events": HTMLIonEventsElement;
}
namespace JSX {
interface IntrinsicElements {
"ion-events": JSXElements.IonEventsAttributes;
}
}
namespace JSXElements {
export interface IonEventsAttributes extends HTMLAttributes {
}
}
}
import {
FabButton as IonFabButton
} from './components/fab-button/fab-button';