mirror of
https://github.com/grafana/grafana.git
synced 2025-09-22 21:14:35 +08:00
noImplicitAny: Reduce errors to 3800-ish (#17781)
* Reduce noImplicitAny errors to 3900-ish * Fix lots of errors * Add interface
This commit is contained in:

committed by
Torkel Ödegaard

parent
013a1abb6f
commit
3045daedbd
@ -9,7 +9,7 @@ type Options = {
|
||||
};
|
||||
|
||||
export class DataProcessor {
|
||||
constructor(private panel) {}
|
||||
constructor(private panel: any) {}
|
||||
|
||||
getSeriesList(options: Options): TimeSeries[] {
|
||||
const list: TimeSeries[] = [];
|
||||
@ -140,7 +140,7 @@ export class DataProcessor {
|
||||
}
|
||||
}
|
||||
|
||||
getXAxisValueOptions(options) {
|
||||
getXAxisValueOptions(options: any) {
|
||||
switch (this.panel.xaxis.mode) {
|
||||
case 'series': {
|
||||
return [
|
||||
|
Reference in New Issue
Block a user