refactor(TypeScript): Add noImplicitAny
We automatically insert explicit 'any's where needed. These need to be addressed as in #9100. Fixes #4924
This commit is contained in:
@ -60,8 +60,8 @@ import {
|
||||
]
|
||||
})
|
||||
export class AnimateApp {
|
||||
public items = [];
|
||||
public _state;
|
||||
public items: any[] /** TODO #9100 */ = [];
|
||||
public _state: any /** TODO #9100 */;
|
||||
|
||||
public bgStatus = 'focus';
|
||||
|
||||
|
Reference in New Issue
Block a user