mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
18 lines
394 B
TypeScript
18 lines
394 B
TypeScript
import { TestDataDatasource } from './datasource';
|
|
import { TestDataQueryCtrl } from './query_ctrl';
|
|
|
|
class TestDataAnnotationsQueryCtrl {
|
|
annotation: any;
|
|
|
|
constructor() {}
|
|
|
|
static template = '<h2>Annotation scenario</h2>';
|
|
}
|
|
|
|
export {
|
|
TestDataDatasource,
|
|
TestDataDatasource as Datasource,
|
|
TestDataQueryCtrl as QueryCtrl,
|
|
TestDataAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
|
};
|