mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
more implied any
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user