module.ts 544 B

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