mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
* move config to grafana runtime * set defaults * defaults in constructor * use @types/systemjs * rename Settings to GrafanaBootConfig
8 lines
382 B
TypeScript
8 lines
382 B
TypeScript
import { PanelCtrl } from 'app/features/panel/panel_ctrl';
|
|
import { MetricsPanelCtrl } from 'app/features/panel/metrics_panel_ctrl';
|
|
import { QueryCtrl } from 'app/features/panel/query_ctrl';
|
|
import { alertTab } from 'app/features/alerting/AlertTabCtrl';
|
|
import { loadPluginCss } from '@grafana/runtime';
|
|
|
|
export { PanelCtrl, MetricsPanelCtrl, QueryCtrl, alertTab, loadPluginCss };
|