Merge pull request #16045 from grafana/hugoh/no-implicit-any

Cleaning up implicit anys in DashboardExporter and tests
This commit is contained in:
Torkel Ödegaard
2019-03-18 22:50:23 +01:00
committed by GitHub
5 changed files with 61 additions and 23 deletions

View File

@@ -13,7 +13,7 @@ export interface BuildInfo {
export class Settings {
datasources: any;
panels: PanelPlugin[];
panels: { [key: string]: PanelPlugin };
appSubUrl: string;
windowTitlePrefix: string;
buildInfo: BuildInfo;