chore(package): update stencil 0.6.11 and ionicons 4.0.0-18

This commit is contained in:
Adam Bradley
2018-02-27 14:30:15 -06:00
parent b1dbc1b733
commit cee37a60b4
3 changed files with 31 additions and 24 deletions

View File

@ -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';