module.ts 688 B

1234567891011121314151617181920212223
  1. import {GraphiteDatasource} from './datasource';
  2. import {GraphiteQueryCtrl} from './query_ctrl';
  3. class GraphiteConfigCtrl {
  4. static templateUrl = 'public/app/plugins/datasource/graphite/partials/config.html';
  5. }
  6. class GraphiteQueryOptionsCtrl {
  7. static templateUrl = 'public/app/plugins/datasource/graphite/partials/query.options.html';
  8. }
  9. class AnnotationsQueryCtrl {
  10. static templateUrl = 'public/app/plugins/datasource/graphite/partials/annotations.editor.html';
  11. }
  12. export {
  13. GraphiteDatasource as Datasource,
  14. GraphiteQueryCtrl as QueryCtrl,
  15. GraphiteConfigCtrl as ConfigCtrl,
  16. GraphiteQueryOptionsCtrl as QueryOptionsCtrl,
  17. AnnotationsQueryCtrl as AnnotationsQueryCtrl,
  18. };