mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
15 lines
419 B
TypeScript
15 lines
419 B
TypeScript
import { ElasticDatasource } from './datasource';
|
|
import { ElasticQueryCtrl } from './query_ctrl';
|
|
import { ElasticConfigCtrl } from './config_ctrl';
|
|
|
|
class ElasticAnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
ElasticDatasource as Datasource,
|
|
ElasticQueryCtrl as QueryCtrl,
|
|
ElasticConfigCtrl as ConfigCtrl,
|
|
ElasticAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
};
|