From df3cc2b96afc6d02f2708b24eacb52b03411c06b Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Tue, 27 Feb 2018 23:01:06 -0600 Subject: [PATCH] fix(input-shim): put an any on it --- packages/core/src/components/input-shims/input-shims.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/components/input-shims/input-shims.tsx b/packages/core/src/components/input-shims/input-shims.tsx index ba955e2e06..0e7e4e2db4 100644 --- a/packages/core/src/components/input-shims/input-shims.tsx +++ b/packages/core/src/components/input-shims/input-shims.tsx @@ -52,7 +52,7 @@ export class InputShims { } @Listen('body:ionInputDidLoad') - protected onInputDidLoad(event: CustomEvent) { + protected onInputDidLoad(event: any) { // TODO: remove if fixed: https://github.com/ionic-team/stencil/issues/576 if (this.didLoad) { this.registerInput(event.detail); @@ -60,7 +60,7 @@ export class InputShims { } @Listen('body:ionInputDidUnload') - protected onInputDidUnload(event: CustomEvent) { + protected onInputDidUnload(event: any) { // TODO: remove if fixed: https://github.com/ionic-team/stencil/issues/576 if (this.didLoad) { this.unregisterInput(event.detail);