fix(typings): repair broken typechecks
We had the typechecker disabled by accident, and many problems snuck in Fixes #4507 Closes #4508
This commit is contained in:
@ -64,12 +64,11 @@ function measureWrapper(func, desc) {
|
||||
|
||||
class MultiplyViewResolver extends ViewResolver {
|
||||
_multiplyBy: number;
|
||||
_cache: Map<Type, ViewMetadata>;
|
||||
_cache = new Map<Type, ViewMetadata>();
|
||||
|
||||
constructor(multiple: number, components: Type[]) {
|
||||
super();
|
||||
this._multiplyBy = multiple;
|
||||
this._cache = new Map();
|
||||
ListWrapper.forEach(components, (c) => this._fillCache(c));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user