mirror of
https://github.com/grafana/grafana.git
synced 2025-01-09 23:53:25 -06:00
15 lines
371 B
TypeScript
15 lines
371 B
TypeScript
import OpenTsDatasource from './datasource';
|
|
import { OpenTsQueryCtrl } from './query_ctrl';
|
|
import { OpenTsConfigCtrl } from './config_ctrl';
|
|
|
|
class AnnotationsQueryCtrl {
|
|
static templateUrl = 'partials/annotations.editor.html';
|
|
}
|
|
|
|
export {
|
|
OpenTsDatasource as Datasource,
|
|
OpenTsQueryCtrl as QueryCtrl,
|
|
OpenTsConfigCtrl as ConfigCtrl,
|
|
AnnotationsQueryCtrl,
|
|
};
|