fix(input-shim): put an any on it

This commit is contained in:
Adam Bradley
2018-02-27 23:01:06 -06:00
parent f5d5d76017
commit df3cc2b96a

View File

@ -52,7 +52,7 @@ export class InputShims {
}
@Listen('body:ionInputDidLoad')
protected onInputDidLoad(event: CustomEvent<HTMLElement>) {
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<HTMLElement>) {
protected onInputDidUnload(event: any) {
// TODO: remove if fixed: https://github.com/ionic-team/stencil/issues/576
if (this.didLoad) {
this.unregisterInput(event.detail);