fix(status-tap): using ion-scroll API

This commit is contained in:
Manu Mtz.-Almeida
2018-02-01 22:40:02 +01:00
parent 0a7d3808fd
commit ceccd024ed
5 changed files with 73 additions and 29 deletions

View File

@ -2805,6 +2805,36 @@ declare global {
}
import {
StatusTap as IonStatusTap
} from './components/status-tap/status-tap';
declare global {
interface HTMLIonStatusTapElement extends IonStatusTap, HTMLElement {
}
var HTMLIonStatusTapElement: {
prototype: HTMLIonStatusTapElement;
new (): HTMLIonStatusTapElement;
};
interface HTMLElementTagNameMap {
"ion-status-tap": HTMLIonStatusTapElement;
}
interface ElementTagNameMap {
"ion-status-tap": HTMLIonStatusTapElement;
}
namespace JSX {
interface IntrinsicElements {
"ion-status-tap": JSXElements.IonStatusTapAttributes;
}
}
namespace JSXElements {
export interface IonStatusTapAttributes extends HTMLAttributes {
}
}
}
import {
TabButton as IonTabButton
} from './components/tab-button/tab-button';