mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 04:53:58 +08:00
chore(package): update stencil 0.6.11 and ionicons 4.0.0-18
This commit is contained in:
23
packages/core/src/components.d.ts
vendored
23
packages/core/src/components.d.ts
vendored
@ -3,6 +3,20 @@
|
||||
* It contains typing information for all components that exist in this project
|
||||
* and imports for stencil collections that might be configured in your stencil.config.js file
|
||||
*/
|
||||
declare global {
|
||||
namespace JSX {
|
||||
interface Element {}
|
||||
export interface IntrinsicElements {}
|
||||
}
|
||||
namespace JSXElements {}
|
||||
|
||||
interface HTMLStencilElement extends HTMLElement {
|
||||
componentOnReady(): Promise<this>;
|
||||
componentOnReady(done: (ele?: this) => void): void;
|
||||
}
|
||||
|
||||
interface HTMLAttributes {}
|
||||
}
|
||||
|
||||
import 'ionicons';
|
||||
|
||||
@ -50,15 +64,6 @@ import {
|
||||
NodeHeightFn,
|
||||
} from './components/virtual-scroll/virtual-scroll-utils';
|
||||
|
||||
declare global {
|
||||
interface HTMLStencilElement extends HTMLElement {
|
||||
componentOnReady(): Promise<this>;
|
||||
componentOnReady(done: (ele?: this) => void): void;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
import {
|
||||
ActionSheetController as IonActionSheetController
|
||||
} from './components/action-sheet-controller/action-sheet-controller';
|
||||
|
Reference in New Issue
Block a user