2017-12-20 12:33:33 +01:00
|
|
|
import { TestDataDatasource } from './datasource';
|
|
|
|
|
import { TestDataQueryCtrl } from './query_ctrl';
|
2016-09-27 14:39:51 +02:00
|
|
|
|
|
|
|
|
class TestDataAnnotationsQueryCtrl {
|
|
|
|
|
annotation: any;
|
|
|
|
|
|
2017-12-19 16:06:54 +01:00
|
|
|
constructor() {}
|
2016-09-27 14:39:51 +02:00
|
|
|
|
2017-12-20 12:33:33 +01:00
|
|
|
static template = '<h2>test data</h2>';
|
2016-09-27 14:39:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
TestDataDatasource,
|
|
|
|
|
TestDataDatasource as Datasource,
|
|
|
|
|
TestDataQueryCtrl as QueryCtrl,
|
2017-12-20 12:33:33 +01:00
|
|
|
TestDataAnnotationsQueryCtrl as AnnotationsQueryCtrl,
|
2016-09-27 14:39:51 +02:00
|
|
|
};
|