mirror of
https://github.com/grafana/grafana.git
synced 2025-01-10 08:03:58 -06:00
15 lines
392 B
TypeScript
15 lines
392 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 as AnnotationsQueryCtrl
|
|
};
|