Chore: Fix strict errors, down to 416 (#31365)

This commit is contained in:
Torkel Ödegaard
2021-02-22 10:06:07 +01:00
committed by GitHub
parent ad5514eca5
commit 372ae7fdd3
11 changed files with 62 additions and 61 deletions

View File

@@ -2,11 +2,11 @@ import _ from 'lodash';
import { auto } from 'angular';
export class QueryCtrl {
target: any;
datasource: any;
panelCtrl: any;
target!: any;
datasource!: any;
panelCtrl!: any;
panel: any;
hasRawMode: boolean;
hasRawMode!: boolean;
error?: string | null;
isLastQuery: boolean;