mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
22 lines
437 B
TypeScript
22 lines
437 B
TypeScript
///<reference path="../../headers/common.d.ts" />
|
|
|
|
import config from 'app/core/config';
|
|
|
|
import {PanelCtrl} from './panel_ctrl';
|
|
import {MetricsPanelCtrl} from './metrics_panel_ctrl';
|
|
import {QueryCtrl} from './query_ctrl';
|
|
|
|
class DefaultPanelCtrl extends PanelCtrl {
|
|
/** @ngInject */
|
|
constructor($scope, $injector) {
|
|
super($scope, $injector);
|
|
}
|
|
}
|
|
|
|
export {
|
|
PanelCtrl,
|
|
DefaultPanelCtrl,
|
|
MetricsPanelCtrl,
|
|
QueryCtrl,
|
|
}
|