Chore: No implict any fixes (#17020)

This commit is contained in:
Torkel Ödegaard
2019-05-13 09:38:19 +02:00
committed by GitHub
parent 2fff8f77dc
commit e0b760e08e
53 changed files with 321 additions and 241 deletions

View File

@ -4,7 +4,7 @@ export class Profiler {
$rootScope: any;
window: any;
init(config, $rootScope) {
init(config: any, $rootScope: any) {
this.$rootScope = $rootScope;
this.window = window;
@ -13,7 +13,7 @@ export class Profiler {
}
}
renderingCompleted(panelId) {
renderingCompleted() {
// add render counter to root scope
// used by phantomjs render.js to know when panel has rendered
this.panelsRendered = (this.panelsRendered || 0) + 1;