module.js 634 B

12345678910111213141516171819
  1. import {GenericDatasource} from './datasource';
  2. import {GenericDatasourceQueryCtrl} from './query_ctrl';
  3. class GenericConfigCtrl {}
  4. GenericConfigCtrl.templateUrl = 'partials/config.html';
  5. class GenericQueryOptionsCtrl {}
  6. GenericQueryOptionsCtrl.templateUrl = 'partials/query.options.html';
  7. class GenericAnnotationsQueryCtrl {}
  8. GenericAnnotationsQueryCtrl.templateUrl = 'partials/annotations.editor.html'
  9. export {
  10. GenericDatasource as Datasource,
  11. GenericDatasourceQueryCtrl as QueryCtrl,
  12. GenericConfigCtrl as ConfigCtrl,
  13. GenericQueryOptionsCtrl as QueryOptionsCtrl,
  14. GenericAnnotationsQueryCtrl as AnnotationsQueryCtrl
  15. };