mirror of
https://github.com/grafana/grafana.git
synced 2025-08-06 03:09:26 +08:00
Chore: No implict any fixes (#17020)
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user