mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
fix(status-tap): using ion-scroll API
This commit is contained in:
30
packages/core/src/components.d.ts
vendored
30
packages/core/src/components.d.ts
vendored
@ -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';
|
||||
|
Reference in New Issue
Block a user