more implied any

This commit is contained in:
unknown
2015-03-11 10:51:55 +01:00
parent d2ff5898b8
commit 502c7582f7
+1 -1
View File
@@ -44,7 +44,7 @@ function registerWebComponent(webComponentClass: Function, ...mixins: any[]): vo
for (var i in webComponent) {
// do not include polymer functions
if (i != "async" && i != "job" && i != "fire" && i != "asyncFire" && i != "cancelUnbindAll") {
var attribute: any = webComponent[i];
var attribute: any = (<any>webComponent)[i];
flattenedComponent[i] = attribute;
}
}