Typescript: Removes implicit anys (#17625)

* Chore: Remove implicit anys from ResultProcessor and tests

* Chore: Removes implicit anys for /loki/**/*.ts

* Chore: Removes implicit anys for prometheus/**/*
This commit is contained in:
Hugo Häggmark
2019-06-18 11:01:12 +02:00
committed by GitHub
parent d6ee96ee64
commit 3424b64299
19 changed files with 226 additions and 167 deletions

View File

@@ -3,7 +3,7 @@ export class PrometheusConfigCtrl {
current: any;
/** @ngInject */
constructor($scope) {
constructor($scope: any) {
this.current.jsonData.httpMethod = this.current.jsonData.httpMethod || 'GET';
}
}