mirror of
https://github.com/grafana/grafana.git
synced 2025-09-22 07:12:52 +08:00
MySQL/Postgres/CloudMonitoring: Fixes issues related to babel upgrade (#32619)
This commit is contained in:
@ -10,9 +10,12 @@ export interface JWT {
|
|||||||
|
|
||||||
export class CloudMonitoringConfigCtrl {
|
export class CloudMonitoringConfigCtrl {
|
||||||
static templateUrl = 'public/app/plugins/datasource/cloud-monitoring/partials/config.html';
|
static templateUrl = 'public/app/plugins/datasource/cloud-monitoring/partials/config.html';
|
||||||
|
|
||||||
|
// Set through angular bindings
|
||||||
|
declare current: any;
|
||||||
|
declare meta: any;
|
||||||
|
|
||||||
datasourceSrv: DatasourceSrv;
|
datasourceSrv: DatasourceSrv;
|
||||||
current: any;
|
|
||||||
meta: any;
|
|
||||||
jsonText: string;
|
jsonText: string;
|
||||||
validationErrors: string[] = [];
|
validationErrors: string[] = [];
|
||||||
inputDataValid: boolean;
|
inputDataValid: boolean;
|
||||||
|
@ -7,7 +7,9 @@ import {
|
|||||||
export class MssqlConfigCtrl {
|
export class MssqlConfigCtrl {
|
||||||
static templateUrl = 'partials/config.html';
|
static templateUrl = 'partials/config.html';
|
||||||
|
|
||||||
current: any;
|
// Set through angular bindings
|
||||||
|
declare current: any;
|
||||||
|
|
||||||
onPasswordReset: ReturnType<typeof createResetHandler>;
|
onPasswordReset: ReturnType<typeof createResetHandler>;
|
||||||
onPasswordChange: ReturnType<typeof createChangeHandler>;
|
onPasswordChange: ReturnType<typeof createChangeHandler>;
|
||||||
showUserCredentials: boolean;
|
showUserCredentials: boolean;
|
||||||
|
@ -9,7 +9,9 @@ import DatasourceSrv from 'app/features/plugins/datasource_srv';
|
|||||||
export class PostgresConfigCtrl {
|
export class PostgresConfigCtrl {
|
||||||
static templateUrl = 'partials/config.html';
|
static templateUrl = 'partials/config.html';
|
||||||
|
|
||||||
current: any;
|
// Set through angular bindings
|
||||||
|
declare current: any;
|
||||||
|
|
||||||
datasourceSrv: any;
|
datasourceSrv: any;
|
||||||
showTimescaleDBHelp: boolean;
|
showTimescaleDBHelp: boolean;
|
||||||
onPasswordReset: ReturnType<typeof createResetHandler>;
|
onPasswordReset: ReturnType<typeof createResetHandler>;
|
||||||
|
Reference in New Issue
Block a user