12345678910111213141516171819 |
- import {GenericDatasource} from './datasource';
- import {GenericDatasourceQueryCtrl} from './query_ctrl';
- class GenericConfigCtrl {}
- GenericConfigCtrl.templateUrl = 'partials/config.html';
- class GenericQueryOptionsCtrl {}
- GenericQueryOptionsCtrl.templateUrl = 'partials/query.options.html';
- class GenericAnnotationsQueryCtrl {}
- GenericAnnotationsQueryCtrl.templateUrl = 'partials/annotations.editor.html'
- export {
- GenericDatasource as Datasource,
- GenericDatasourceQueryCtrl as QueryCtrl,
- GenericConfigCtrl as ConfigCtrl,
- GenericQueryOptionsCtrl as QueryOptionsCtrl,
- GenericAnnotationsQueryCtrl as AnnotationsQueryCtrl
- };
|