module.ts 443 B

1234567891011121314
  1. import { PrometheusDatasource } from './datasource';
  2. import { PrometheusQueryCtrl } from './query_ctrl';
  3. import { PrometheusConfigCtrl } from './config_ctrl';
  4. class PrometheusAnnotationsQueryCtrl {
  5. static templateUrl = 'partials/annotations.editor.html';
  6. }
  7. export {
  8. PrometheusDatasource as Datasource,
  9. PrometheusQueryCtrl as QueryCtrl,
  10. PrometheusConfigCtrl as ConfigCtrl,
  11. PrometheusAnnotationsQueryCtrl as AnnotationsQueryCtrl,
  12. };