chore(build): cast to any before casting to stencil element

This commit is contained in:
Dan Bucholtz
2018-01-31 11:39:52 -06:00
parent 1e601f6744
commit 0bdce81151
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/core",
"version": "0.0.2-49",
"version": "0.0.2-50",
"description": "Base components for Ionic",
"main": "dist/ionic.js",
"types": "dist/types/index.d.ts",

View File

@ -84,7 +84,7 @@ export class InfiniteScroll {
@Event() ionInfinite: EventEmitter;
componentWillLoad() {
const scrollEl = this.el.closest('ion-scroll') as StencilElement;
const scrollEl = this.el.closest('ion-scroll') as any as StencilElement;
return scrollEl.componentOnReady().then((el) => {
this.scrollEl = el as HTMLIonScrollElement;
});